tisp

tiny lisp
git clone git://edryd.org/tisp
Log | Files | Refs | LICENSE

commit 4f5daf62aa855fbcd1b36f8538d75e80a8ce3fb7
parent 163911b33256b9ffab55394e5fa58d3b1ac6c2b8
Author: Ed van Bruggen <edvb@uw.edu>
Date:   Tue, 20 Nov 2018 14:33:41 -0800

Make tibs static by default

Diffstat:
config.def.h | 2+-
t/math/add.tsp | 1-
t/math/compare.tsp | 1-
t/math/sub.tsp | 1-
t/prim/cond.tsp | 1-
t/prim/cons.tsp | 1-
t/prim/define.tsp | 1-
t/prim/eq.tsp | 1-
t/prim/lambda.tsp | 1-
t/prim/quote.tsp | 1-
t/simple/comments.tsp | 1-
11 files changed, 1 insertion(+), 11 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -1,2 +1,2 @@ -#define TIB_STATIC 0 +#define TIB_STATIC 1 #define USE_LINENOISE 1 /* TODO implement */ diff --git a/t/math/add.tsp b/t/math/add.tsp @@ -1,4 +1,3 @@ -(load "math") (+ 1 1) (+ 1 2 3) (+ 1 2 (+ 1 2)) diff --git a/t/math/compare.tsp b/t/math/compare.tsp @@ -1,4 +1,3 @@ -(load "math") (< 2 3) (< 3 3) (< 4 3) diff --git a/t/math/sub.tsp b/t/math/sub.tsp @@ -1,4 +1,3 @@ -(load "math") (- 3) (- +3) (- -289) diff --git a/t/prim/cond.tsp b/t/prim/cond.tsp @@ -1,4 +1,3 @@ -(load "math") (cond) (cond (t 1)) (cond ((= 1 1) 1) ((= 1 2) 2) (t 3)) diff --git a/t/prim/cons.tsp b/t/prim/cons.tsp @@ -1,4 +1,3 @@ -(load "math") (cons 1 2) (cons 1 (cons 2 3)) (cons 1 (cons 2 (cons 3 4))) diff --git a/t/prim/define.tsp b/t/prim/define.tsp @@ -1,4 +1,3 @@ -(load "math") (define foo 4) foo (define bar foo) diff --git a/t/prim/eq.tsp b/t/prim/eq.tsp @@ -1,4 +1,3 @@ -(load "math") (=) (= 1) (= "foo") diff --git a/t/prim/lambda.tsp b/t/prim/lambda.tsp @@ -1,4 +1,3 @@ -(load "math") ((lambda (x) x) 3) ((lambda (x) x) (+ 1 2 3)) ((lambda (x) (+ x 1)) 8) diff --git a/t/prim/quote.tsp b/t/prim/quote.tsp @@ -1,4 +1,3 @@ -(load "math") (quote 1) (quote 9234) (quote "foo") diff --git a/t/simple/comments.tsp b/t/simple/comments.tsp @@ -1,4 +1,3 @@ -(load "math") ; commment ; (+ 1 1) (+ 1 1 ; more comments