diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2008-11-16 22:08:15 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2008-11-16 22:08:15 +0100 |
commit | 8b2a9401a147bd0b26cd2976ae71a1022fbde8cc (patch) | |
tree | c1a1323003ee8148af5dc60bcf1b88157dd00eb8 /tests/tmath.nim | |
parent | 972c51086152bd45aef4eb17c099fa3472a19d04 (diff) | |
download | Nim-8b2a9401a147bd0b26cd2976ae71a1022fbde8cc.tar.gz |
version 0.7.0
Diffstat (limited to 'tests/tmath.nim')
-rw-r--r-- | tests/tmath.nim | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/tmath.nim b/tests/tmath.nim index 5a10cafb3..6a1dae54d 100644 --- a/tests/tmath.nim +++ b/tests/tmath.nim @@ -1,6 +1,6 @@ # tests for the interpreter -proc loops(a: out int) = +proc loops(a: var int) = nil #var # b: int @@ -81,9 +81,5 @@ proc main() = of "Rumpf": write(stdout, "Du bist in der Familie meines Meisters!\n") else: write(stdout, "ich kenne dich nicht!\n") write(stdout, "Du heisst " & s & "\n") -# [[ -proc main2() = - main() main() -#]] |