diff --git a/piclib/built-in.scm b/piclib/built-in.scm index afe90b7a..d7070353 100644 --- a/piclib/built-in.scm +++ b/piclib/built-in.scm @@ -1,3 +1,12 @@ +(define (zero? n) + (= n 0)) + +(define (positive? x) + (> x 0)) + +(define (negative? x) + (< x 0)) + (define (caar p) (car (car p)))