about summary refs log tree commit diff stats
path: root/core.lua
diff options
context:
space:
mode:
Diffstat (limited to 'core.lua')
-rw-r--r--core.lua7
1 files changed, 6 insertions, 1 deletions
diff --git a/core.lua b/core.lua index 3e4773a..4f84f7f 100644 --- a/core.lua +++ b/core.lua
@@ -16,7 +16,12 @@ local function fold (kons, knil, r)
16 end 16 end
17end 17end
18 18
19local env = {} 19local env = type.environment({}, {})
20
21env["interaction-environment"] = function (r)
22 assert_arity(r,0,0)
23 return env
24end
20 25
21---[[ EQUIVALENCE ]]--- 26---[[ EQUIVALENCE ]]---
22 27