mirror of
https://github.com/nim-lang/Nim.git
synced 2026-09-17 10:34:53 +00:00
5 lines
130 B
Nim
5 lines
130 B
Nim
proc pub*(x: int): int = x + 1
|
|
|
|
proc hidden(): int = 42 # no `*` ...
|
|
export hidden # ... but explicitly re-exported
|