MyWorkflow.jl
MyWorkflow.MyWorkflow — ModuleMyWorkflowThis is an example of Julia module. These docstrings can be seen on github
MyWorkflow.func — Methodfunc(x)Returns double the numer x plus 1.
julia> func(2)
5MyWorkflow.hello — Methodhello(msg::String)print string Hello followed by msg
julia> MyWorkflow.hello("world")
"helloworld"