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

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