function main() { print("Counting:"); for (var i = 0; i < 5; i = i + 1) { print(i); } return 0; }