Skip to content
Snippets Groups Projects
Commit 16857c2e authored by florian's avatar florian
Browse files

DOC: Add a dummy function with documentation

parent 76a64d5d
No related branches found
No related tags found
No related merge requests found
Pipeline #9514 passed
using Documenter, CaosDB
makedocs(sitename="CaosDB.jl Documentation")
# CaosDB.jl documentation
This will be the index of the documentation of the CaosDB Julia client
library.
```@docs
dummy_func(x)
```
module CaosDB
greet() = print("Hello World!")
export dummy_func
"""
dummy_func(x)
Returns double the number `x` plus `1`.
"""
dummy_func(x) = 2x + 1
end # module
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment