summary refs log tree commit diff stats
path: root/tests/varstmt/tvardecl.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/varstmt/tvardecl.nim')
-rw-r--r--tests/varstmt/tvardecl.nim18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/varstmt/tvardecl.nim b/tests/varstmt/tvardecl.nim
index 5cc6f4960..a6b508295 100644
--- a/tests/varstmt/tvardecl.nim
+++ b/tests/varstmt/tvardecl.nim
@@ -2,14 +2,14 @@ discard """
   file: "tvardecl.nim"
   output: "44"
 """
-# Test the new variable declaration syntax

-

-var

-  x = 0

-  s = "Hallo"

-  a, b: int = 4

-

-write(stdout, a)

-write(stdout, b) #OUT 44

+# Test the new variable declaration syntax
+
+var
+  x = 0
+  s = "Hallo"
+  a, b: int = 4
+
+write(stdout, a)
+write(stdout, b) #OUT 44