aboutsummaryrefslogtreecommitdiff
path: root/tests/math/lessthan/happy.neb
blob: 796a8f1b2b03d5ac1e72211a7b71d3839ec62dae (plain)
1
2
3
4
5
6
7
8
9
(print 
    (concat
        (->string (< 20 5)) " "
        (->string (< 3.6 2)) " "
        (->string (< 1 2.5)) " "
        (->string (< 5 5)) " "
        (->string (< 1.1 4.4))))

; #false #false #true #false #true