whereami — donne l'arborescence d'appel de l'instruction courante
whereami()
Affiche l'arborescence des appels jusqu'à l'emplacement courant, où se trouve l'appel à whereami(). Peut être utilisé suite à un appel à pause.
pause
deff('y=test(a)',['y=sin(a)+1'; 'y=t1(y)'; 'y=y+1']) deff('y=t1(y)',['y=y^2';'whereami()']) test(1)