A typical mistake made by most beginning programming students. What's missing from the following program?


use strict;

use warnings;



    print "Hello";

    print "World\n";

Source code

Hint 1: "Hello World" is two words. Only one word is printed.

Next Hint
Answer

Main gallery