From 3ed2c60da6ef2e18d7e273cf39056833c5b41c13 Mon Sep 17 00:00:00 2001 From: Bad Diode Date: Wed, 13 Oct 2021 20:16:31 +0200 Subject: Add the define `def` procedure --- src/bootstrap/main.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/bootstrap/main.c') diff --git a/src/bootstrap/main.c b/src/bootstrap/main.c index 945e121..e8e530d 100755 --- a/src/bootstrap/main.c +++ b/src/bootstrap/main.c @@ -71,6 +71,7 @@ init(void) { MAKE_ENV_PROC(global_env, ">=", proc_num_greatereq_than); MAKE_ENV_PROC(global_env, "=", proc_num_equal); MAKE_ENV_PROC(global_env, "eq?", proc_equal); + MAKE_ENV_PROC(global_env, "def", proc_define); } void -- cgit v1.2.1