RosettaCodeData/Task/Flow-control-structures/PureBasic/flow-control-structures-1.basic

13 lines
177 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
If OpenConsole()
top:
i = i + 1
PrintN("Hello world.")
If i < 10
Goto top
EndIf
Print(#CRLF$ + #CRLF$ + "Press ENTER to exit")
Input()
CloseConsole()
EndIf