Stdout

line : Str -> Task {} *

Write the given string to standard output, followed by a newline.

To write to stdout without the newline, see Stdout.write.

write : Str -> Task {} *

Write the given string to standard output.

Note that many terminals will not actually display strings that are written to them until they receive a newline, so this may appear to do nothing until you write a newline!

To write to stdout with a newline at the end, see Stdout.line.