mirror of
https://github.com/logos-storage/apatheia.git
synced 2026-02-20 21:13:08 +00:00
8 lines
260 B
Nim
8 lines
260 B
Nim
# This is just an example to get you started. A typical library package
|
|
# exports the main API in this file. Note that you cannot rename this file
|
|
# but you can remove it if you wish.
|
|
|
|
proc add*(x, y: int): int =
|
|
## Adds two numbers together.
|
|
return x + y
|