aboutsummaryrefslogtreecommitdiff
path: root/tests/math/greaterthan/happy.neb
blob: e195b7e4cbf1542257d76d60f6a9fff6bef07de8 (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))))

; #true #true #false #false #false