Code : Tout sélectionner
global dim train.l (10,10)
global dim moto.l (10,10)
global dim temp.l (10,10)
macro tab (nom_tableau)
for YY = 1 to 10
for XX = 1 to 10
nom_tableau (xx,yy)= train(xx,yy)
next xx
next yy
endmacro
tab(moto)
ex: tab(voiture) ... "voiture = train".
C'est un truc important que j'avais besoin !!
