diff options
Diffstat (limited to 'tests/tvardecl.nim')
-rwxr-xr-x | tests/tvardecl.nim | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/tvardecl.nim b/tests/tvardecl.nim deleted file mode 100755 index 496601e3a..000000000 --- a/tests/tvardecl.nim +++ /dev/null @@ -1,9 +0,0 @@ -# Test the new variable declaration syntax - -var - x = 0 - s = "Hallo" - a, b: int = 4 - -write(stdout, a) -write(stdout, b) #OUT 44 |