index
:
Nim
this commit
devel
This repository contains the Nim compiler, Nim's stdlib, tools, and documentation. (mirror)
ahoang <ahoang@tilde.institute>
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
tests
/
compile
/
tnoforward.nim
blob: 0359ff3487f91323db845e98550c2d48ec383be7 (
plain
) (
blame
)
1
2
3
4
5
6
7
8
9
10
{.
noforward
:
on
.}
proc
foo
(
x
:
int
)
=
bar
x
proc
bar
(
x
:
int
)
=
echo
x
foo
(
10
)