fez-lisp 1.6.17 → 1.6.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lambda.html CHANGED
@@ -4,7 +4,7 @@
4
4
  name="viewport"
5
5
  content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height"
6
6
  />
7
- <meta name="description" content="Write and run Fez programs" />
7
+ <meta name="description" content="Run Fez programs" />
8
8
  <title>Lambda</title>
9
9
  <link rel="icon" type="image/svg+xml" href="./favicon.svg" />
10
10
  <style>
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "fez-lisp",
3
3
  "description": "Lisp interpreted & compiled to JavaScript",
4
4
  "author": "AT290690",
5
- "version": "1.6.17",
5
+ "version": "1.6.18",
6
6
  "type": "module",
7
7
  "main": "index.js",
8
8
  "keywords": [
package/src/compiler.js CHANGED
@@ -292,6 +292,7 @@ const comp = (tree, Drill) => {
292
292
  case STATIC_TYPES.AS_NUMBER:
293
293
  case DEBUG.LOG:
294
294
  case DEBUG.STRING:
295
+ case DEBUG.UNQUOTED_STRING:
295
296
  return compile(tail[0], Drill)
296
297
 
297
298
  default: {