Skip to content

Commit

Permalink
Update PR
Browse files Browse the repository at this point in the history
  • Loading branch information
abelsiqueira authored Jul 4, 2024
1 parent d58fb2a commit a7e9876
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions template/src/{{ PackageName }}.jl.jinja
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
module {{ PackageName }}

# A simple function to print "Hello, World!"
"""
hi = hello_world()

A simple function to return "Hello, World!"
"""
function hello_world()
println("Hello, World!")
return "Hello, World!"
end

end

0 comments on commit a7e9876

Please sign in to comment.