Skip to content

Commit

Permalink
Merge branch 'main' into retry
Browse files Browse the repository at this point in the history
  • Loading branch information
kris-brown authored May 10, 2024
2 parents acbfb1d + 8e1fdfc commit e48b908
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/AlgebraicABMS.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
""" Some description of ths package
"""
module AlgebraicABMS

export hello

using Catlab

""" hello(name::String)
Returns the string "Hello, <name>!" where `<name>` is replaced with the provided parameter
"""
hello(name::String) = string("Hello, ", name, "!")

end

0 comments on commit e48b908

Please sign in to comment.