Flow-control structures: Difference between revisions

Content added Content deleted
(Flow-control structures en BASIC256)
Line 281: Line 281:
6
6
8</lang>
8</lang>


=={{header|BASIC256}}==
<lang BASIC256>
gosub subrutina

bucle:
print "Bucle infinito"
goto bucle


subrutina:
print "En subrutina"
pause 10
return
end
</lang>



=={{header|BBC BASIC}}==
=={{header|BBC BASIC}}==