;; comparison.txt ;; Test comparisons of numbers. (< 1 2) => #t (< 4 3) => #f (= 1 2) => #f (= 3 3) => #t (> 30 40) => #f (> 50 5) => #t (> 4 -5) => #t (define n 2) (<= n 0) => #f (<= n 2) => #t