aboutsummaryrefslogtreecommitdiff
path: root/tests/math/lessthanequal/happy.neb
blob: 246f06953a2e6ce5c4140a18e14e4860c4bd8a95 (plain)
1
2
3
4
5
6
7
8
9
10
(print 
    (concat
        (->string (<= 20 5)) " "
        (->string (<= 3.6 2)) " "
        (->string (<= 1 2.5)) " "
        (->string (<= 5 5)) " "
        (->string (<= 45 45.0)) " "
        (->string (<= 1.1 4.4))))

; #false #false #true #true #true #true