about summary refs log tree commit diff stats
path: root/type.lua
diff options
context:
space:
mode:
authorCase Duckworth2024-03-19 22:13:44 -0500
committerCase Duckworth2024-03-19 22:13:44 -0500
commit9c5643d5f78e4228d47e293b421d7f388d47945f (patch)
tree3925d137d7820622b38f183ad259475ff48b39e5 /type.lua
parentAdd QUOTE, QUASIQUOTE, UNQUOTE reading and generalize (diff)
downloadlam-9c5643d5f78e4228d47e293b421d7f388d47945f.tar.gz
lam-9c5643d5f78e4228d47e293b421d7f388d47945f.zip
A new start!
Diffstat (limited to 'type.lua')
-rw-r--r--type.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/type.lua b/type.lua index 945f4d1..0d3b776 100644 --- a/type.lua +++ b/type.lua
@@ -31,6 +31,7 @@ end
31-- Symbols and Numbers are strings and numbers, respectively. At some point 31-- Symbols and Numbers are strings and numbers, respectively. At some point
32-- I'll want to implement a full numeric tower and symbol tables or namespaces 32-- I'll want to implement a full numeric tower and symbol tables or namespaces
33-- or whatever, but today is not that day 33-- or whatever, but today is not that day
34
34t.Symbol = tostring 35t.Symbol = tostring
35t.Number = tonumber 36t.Number = tonumber
36 37