RosettaCodeData/Task/Flow-control-structures/FreeBASIC/flow-control-structures.basic

15 lines
132 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
'$lang: "qb"
Gosub subrutina
bucle:
Print "Bucle infinito"
Goto bucle
End
subrutina:
Print "En subrutina"
Sleep 100
Return
Sleep