mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 18:02:05 +00:00
11 lines
87 B
Nim
11 lines
87 B
Nim
{. noforward: on .}
|
|
|
|
proc foo(x: int) =
|
|
bar x
|
|
|
|
proc bar(x: int) =
|
|
echo x
|
|
|
|
foo(10)
|
|
|