13 lines
177 B
Text
13 lines
177 B
Text
|
|
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
|