RosettaCodeData/Task/Loops-For/PureBasic/loops-for.purebasic
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

11 lines
185 B
Text

If OpenConsole()
Define i, j
For i=1 To 5
For j=1 To i
Print("*")
Next j
PrintN("")
Next i
Print(#LFCR$+"Press ENTER to quit"): Input()
CloseConsole()
EndIf