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

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