From cff8072df5daba2c38ae2765af36cbb09da358f1 Mon Sep 17 00:00:00 2001 From: Teddy Date: Thu, 8 Aug 2013 11:01:11 +0800 Subject: `lambda` and `define` are fully supported now --- builtin.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'builtin.h') diff --git a/builtin.h b/builtin.h index fe1c925..2756d18 100644 --- a/builtin.h +++ b/builtin.h @@ -117,10 +117,12 @@ class IntNumObj: public ExactNumObj { int val; /** Construct a integer */ IntNumObj(int val); + int get_i(); #else mpz_class val; /** Construct a integer */ IntNumObj(mpz_class val); + int get_i(); #endif /** Try to construct an IntNumObj object * @return NULL if failed @@ -260,6 +262,8 @@ BUILTIN_PROC_DEF(is_list); BUILTIN_PROC_DEF(make_list); BUILTIN_PROC_DEF(length); BUILTIN_PROC_DEF(append); +BUILTIN_PROC_DEF(reverse); +BUILTIN_PROC_DEF(list_tail); BUILTIN_PROC_DEF(display); -- cgit v1.2.3