Flow-control structures: Difference between revisions

Content added Content deleted
(Added 11l)
(Flow-control structures en Yabasic)
Line 2,937: Line 2,937:
4
4
</pre>
</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}}==
=={{header|zkl}}==