/*
 * File: hello_world.txt
 * ---------------------
 */

/* wln is short for write line. It adds a line break after printing a string to
   the console. */
wln("Hello world!");

/* write works like wln but does not add a line break. */
write("Hello ");
wln("world!");

