diff options
author | Araq <rumpf_a@web.de> | 2018-12-06 16:37:56 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-12-11 21:23:23 +0100 |
commit | 3b783f7e131c6b5be5057127985d8ccb699d6d06 (patch) | |
tree | 2d1b08daa8b7a42912fd415bdc0242ee512c9558 /tests/misc | |
parent | 8896770f8f9fa7057a11598b64160e7bce6a4266 (diff) | |
download | Nim-3b783f7e131c6b5be5057127985d8ccb699d6d06.tar.gz |
Testament: refactoring; makes the test joiner green
Diffstat (limited to 'tests/misc')
-rw-r--r-- | tests/misc/tack.nim | 1 | ||||
-rw-r--r-- | tests/misc/tpos.nim | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/misc/tack.nim b/tests/misc/tack.nim index fb89dc8b1..458395ef6 100644 --- a/tests/misc/tack.nim +++ b/tests/misc/tack.nim @@ -16,3 +16,4 @@ proc ack(x, y: int): int = # echo(ack(0, 0)) write(stdout, ack(3, 4)) #OUT 125 +write stdout, "\n" diff --git a/tests/misc/tpos.nim b/tests/misc/tpos.nim index 0c8efa43d..f7607d643 100644 --- a/tests/misc/tpos.nim +++ b/tests/misc/tpos.nim @@ -29,4 +29,5 @@ proc mypos(sub, s: string, start: int = 0): int = var sub = "hello" var s = "world hello" write(stdout, mypos(sub, s)) +write stdout, "\n" #OUT 6 |