Flow-control structures: Difference between revisions

Flow-control structures en Yabasic
(Added 11l)
(Flow-control structures en Yabasic)
Line 2,937:
4
</pre>
 
 
=={{header|Yabasic}}==
<lang Yabasic>
gosub subrutina
 
label bucle
print "Bucle infinito"
goto bucle
end
 
label subrutina
print "En subrutina"
wait 10
return
end
</lang>
 
 
=={{header|zkl}}==
2,123

edits