mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
17 lines
399 B
Nim
17 lines
399 B
Nim
# This file is prefixed with an "a", because other tests
|
|
# depend on it and it must be compiled first.
|
|
stdout.writeLine("to stdout")
|
|
stdout.flushFile()
|
|
stdout.writeLine("to stdout")
|
|
stdout.flushFile()
|
|
|
|
stderr.writeLine("to stderr")
|
|
stderr.flushFile()
|
|
stderr.writeLine("to stderr")
|
|
stderr.flushFile()
|
|
|
|
stdout.writeLine("to stdout")
|
|
stdout.flushFile()
|
|
stdout.writeLine("to stdout")
|
|
stdout.flushFile()
|