Section courante

A propos

Section administrative du site

FOLLOW

Suivre
ST BASIC

Syntaxe

FOLLOW variable [, variable ]

Description

Cette instruction permet de suivre les valeurs des variables d'un programme.

Remarque

Exemples

Voici des exemples typiques de l'utilisation de l'instruction FOLLOW :

  1. FOLLOW N
  2. FOLLOW N, B

Voici un autre exemple :

  1. 10 FOR X=1 TO 3
  2. 20 N=N+1
  3. 30 B=B+1
  4. 48 PRINT N
  5. 50 PRINT B
  6. 60 NEXT X
  7. RUN

on obtiendra le résultat suivant :

1
1
2
2
3
3

Voici encore un autre exemple :

  1. FOLLOW N,B
  2. RUN

on obtiendra le résultat suivant :

N ! = 1 at 1ine 20
B ! = 1 at 1ine 30
1
1
N !=2 at line 20
B !=2 at 1ine 38
2
2
N !=3 at 1ine 20
B !-3 at 1ine 30
3
3

Enfin, pour désactiver le suivi :

  1. UNFOLLOW 

on obtiendra le résultat suivant :

Ok

Dernière mise à jour : Vendredi, le 7 Août 2020