commit fb6baaa630d583447a990b14d5cb7432bd2cda1d Author: Marco Date: Tue Aug 20 16:44:13 2024 +0200 first simple program diff --git a/first.scm b/first.scm new file mode 100644 index 0000000..449d482 --- /dev/null +++ b/first.scm @@ -0,0 +1,4 @@ +(define (p) (p)) +(define (test x y) (if (= x 0) 0 y)) + +(print (test 1 (p)))