aboutsummaryrefslogtreecommitdiff
path: root/tests/math/addition/happy.neb
blob: 4c037b282d2c628e96fd67f7f033fa3fdbee5463 (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 9 0.9 6.9 6.5 36