summary refs log tree commit diff stats
path: root/tests/tloops.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tloops.nim')
-rw-r--r--tests/tloops.nim5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/tloops.nim b/tests/tloops.nim
index de3f4a777..3d03256ad 100644
--- a/tests/tloops.nim
+++ b/tests/tloops.nim
@@ -1,8 +1,5 @@
 # Test nested loops and some other things

 

-import

-  io

-

 proc andTest() =

   var a = 0 == 5 and 6 == 6

 

@@ -60,7 +57,7 @@ proc Foo(n: int): int =
     while b:

         a = a + 3

     a = a + 5

-    io.write(stdout, "Hallo!")

+    write(stdout, "Hallo!")

 

 

 # We should come till here :-)