Flow-control structures: Difference between revisions

Content added Content deleted
(Flow-control structures en FreeBASIC)
m (→‎{{header|PureBasic}}: duplicate entry)
Line 2,111: Line 2,111:
...
...
1
1


=={{header|PureBasic}}==
<lang PureBasic>
OpenConsole()

Gosub subrutina

bucle:
PrintN("Bucle infinito")
Goto bucle


subrutina:
PrintN("En subrutina")
Delay(500)
Return

CloseConsole()
End
</lang>