Flow-control structures: Difference between revisions

m
(Flow-control structures en FreeBASIC)
m (→‎{{header|PureBasic}}: duplicate entry)
Line 2,111:
...
1
 
 
=={{header|PureBasic}}==
<lang PureBasic>
OpenConsole()
 
Gosub subrutina
 
bucle:
PrintN("Bucle infinito")
Goto bucle
 
 
subrutina:
PrintN("En subrutina")
Delay(500)
Return
 
CloseConsole()
End
</lang>
 
 
2,130

edits