RosettaCodeData/Task/Flow-control-structures/Comal/flow-control-structures-4.comal

7 lines
145 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
PRINT "Hello world"
GOTO label
PRINT "This line will never be output"
label:
PRINT "This program will end thanks to the evil GOTO statement"
END