END_FNC

END_FNC

TERMINE UNE FONCTION

  • Type: Commande
  • Paramètre: 0
  • Groupe: Structures

ACTION

La commande END_FNC termine une fonction

SYNTAXE : END_FNC

UTILISATION

  • La commande END_FNC est utilisée pour terminer une fonction.

ERREUR

  • Rien.

EXEMPLE

dim i%

for i%=1 to 10

print double(i%)

next i%

end

fnc double(j%)

result 2*j%

end_fnc

EN RAPPORT

FNC

RESULT

EXIT_FNC