commit ae6e48edf787902380bb1d7092a6a8d1bb2d3b60 parent af2b28f7e566417664e3c6ac48b76479e98799f1 Author: Bertrand BRUN <bertrand.brun@me.com> Date: Tue, 19 Oct 2010 16:33:08 +0200 Ajout de la fonction d'affichage de l'environnement et d'un main Diffstat:
| A | main.lisp | | | 10 | ++++++++++ |
1 file changed, 10 insertions(+), 0 deletions(-)
diff --git a/main.lisp b/main.lisp @@ -0,0 +1,10 @@ +(defun copytree (l) + (if (atom l) + l + (cons (copytree (car l)) + (copytree (cdr l))))) +(load "environnement") +(load "VM/instruction") +;; ... +(run-test t) +(print-env-stack exemple-env-stack)