mirror of
https://github.com/nim-lang/Nim.git
synced 2026-09-17 10:34:53 +00:00
5 lines
101 B
Nim
5 lines
101 B
Nim
proc pub*(x: int): int = x + 1
|
|
|
|
proc secret(): int = 7 # no `*`
|
|
proc hiddenToo(x: int): int = x
|