aboutsummaryrefslogtreecommitdiff
path: root/tests/math/subtraction/happy.neb
blob: 035b83c1cd6b81df221c3e8641ee8de8283f4d78 (plain)
1
2
3
4
5
6
7
8
9
10
(print 
    (concat
        (->string (- 2)) " "
        (->string (- 4 5)) " "
        (->string (- .9)) " "
        (->string (- 2.9 4)) " "
        (->string (- 2 4.5)) " "
        (->string (- 6 7 8 15))))

; -2 -1 -0.9 -1.1 -2.5 -24