TERMINE UNE FONCTION SANS EXECUTER END_FNC
ACTION
La commande EXIT_FNC termine une fonction sans exécuter END_FNC
SYNTAXE :
EXIT_FNC
UTILISATION ERREUR EXEMPLE
dim i%
for i%=1 to 10
print double(i%)
next i%
end
fnc double(j%)
if j%>5 then result 0:exit_fnc
result 2*j%
end_fnc
EXIT_FNC
EXIT_FNC
EN RAPPORT
FNC
END_FNC
RESULT