aboutsummaryrefslogtreecommitdiff
path: root/tests/math/floor/happy.neb
blob: 7fda23e489bba6072dbbe7f0e7941e8e7a0d64b8 (plain)
1
2
3
4
5
6
7
(print 
    (concat
        (->string (floor 5)) " "
        (->string (floor 3.6)) " "
        (->string (floor 2.5))))

; 5 3 2