Browse Source

Ajout documentation

Arthur Brandao 6 năm trước cách đây
mục cha
commit
c3986b4f55
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 3 1
      src/migl/lisp/LispEval.java

+ 3 - 1
src/migl/lisp/LispEval.java

@@ -78,8 +78,10 @@ public class LispEval {
 		}
 	}
 
+	/**
+	 * Définit les opérateurs reconnus par l'évaluateur
+	 */
 	private final void setUpOperators() {
-		//Définition des opérateurs
 		operators.put("define", this.define);
 		operators.put("set!", this.define);
 		operators.put("lambda", this.define);