about summary refs log tree commit diff stats
path: root/lisp/js/l.html
diff options
context:
space:
mode:
authorelioat <hi@eli.li>2023-03-03 10:43:37 -0500
committerelioat <hi@eli.li>2023-03-03 10:43:37 -0500
commit23f5e09b399db722a245b603e9c09b5e8bd2e301 (patch)
tree8a75790cba8addc8a732a7017103252ce66bc905 /lisp/js/l.html
parentff4f7a6d830de18caea887308c495dac93393bd1 (diff)
downloadtour-23f5e09b399db722a245b603e9c09b5e8bd2e301.tar.gz
*
Diffstat (limited to 'lisp/js/l.html')
-rw-r--r--lisp/js/l.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/lisp/js/l.html b/lisp/js/l.html
new file mode 100644
index 0000000..2ab4e13
--- /dev/null
+++ b/lisp/js/l.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+<head>
+	<meta charset="utf-8">
+	<meta name="viewport" content="width=device-width, initial-scale=1">
+	<title>lisp</title>
+	<script src="lisp.js" type="text/javascript"></script>
+</head>
+<body>
+	<script>
+		const ret = lisp.interpret(lisp.parse(
+			`(print 
+				(add 3 3))`
+			));
+	</script>
+</body>
+</html>
\ No newline at end of file
39' href='#n139'>139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197