Fixed */ def, added fixed point arithmetic to example.
[forth.jl.git] / src / lib.4th
index f4b28e6..efadf95 100644 (file)
@@ -1,6 +1,6 @@
 : / /MOD SWAP DROP ;
 : MOD /MOD DROP ;
-: */ * / ;
+: */ -ROT * SWAP / ;
 
 : NEGATE 0 SWAP - ;