diff options
Diffstat (limited to 'tests/constr/tconstr2.nim')
-rw-r--r-- | tests/constr/tconstr2.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/constr/tconstr2.nim b/tests/constr/tconstr2.nim index b911de548..2557d7db9 100644 --- a/tests/constr/tconstr2.nim +++ b/tests/constr/tconstr2.nim @@ -18,5 +18,5 @@ const (s: "hi", x: 69, y: 45, z: 0.0, chars: {'a', 'b', 'c'}), (s: "hi", x: 69, y: 45, z: 1.0, chars: {'a'})] -write(stdout, things[0].x) +writeLine(stdout, things[0].x) #OUT 69 |