Learn to Program with ZedLX

Free Online Programming Course for Beginners

Introduction [5/10]

This program contains an error. Finding and fixing errors is a normal part of computer programming.

Click the Check button to get a hint about what might be wrong. The automatic verifier will analyze the code and provide feedback.

Correct the error and run the program.

Hint: The verifier may offer helpful suggestions. In this case, pay close attention to its advice.


Solution...

Sometimes, the actual error is located just before the reported one. This is one such case.

The error is in the third statement: it is missing a semicolon (;) at the end:

println "Up above the world so high," ;

Loading...