Arithmetic/Integer: Difference between revisions

Added Toka
(Added Toka)
Line 50:
writeln('a/b = ', a div b, ', remainder ", a mod b);
end.
 
==[[Toka]]==
[[Category:Toka]]
 
[ ( a b -- )
2dup ." a+b = " + . cr
2dup ." a-b = " - . cr
2dup ." a*b = " * . cr
2dup ." a/b = " / . ." remainder " mod . cr
] is mathops
Anonymous user