about summary refs log tree commit diff stats
path: root/lisp/js
diff options
context:
space:
mode:
authorelioat <hi@eli.li>2023-10-30 10:14:10 -0400
committerelioat <hi@eli.li>2023-10-30 10:14:10 -0400
commit53b3aec3cc3e5bc63104540608fe88091c585906 (patch)
tree65789271f12480b49dbcf7bc992af51397499d33 /lisp/js
parent5c3b7a8adb1d4a1ad27313ce29e0ba184e729c76 (diff)
downloadtour-53b3aec3cc3e5bc63104540608fe88091c585906.tar.gz
*
Diffstat (limited to 'lisp/js')
-rw-r--r--lisp/js/lisp.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/js/lisp.js b/lisp/js/lisp.js
index 3adb154..36b691d 100644
--- a/lisp/js/lisp.js
+++ b/lisp/js/lisp.js
@@ -88,7 +88,8 @@
 
     '=': (a, b) => { // Returns true if a is equal to b, else false.
       return a === b;
-    },
+    }, // consider eq? instead 
+    // what about an not equal?
 
     and: (a, b, ...rest) => { // Returns true if all conditions are true.
       const args = [a, b].concat(rest);