Fixed >scaled in example.
[forth.jl.git] / src / lib.4th
index f4b28e6..ea4e7de 100644 (file)
@@ -1,6 +1,6 @@
 : / /MOD SWAP DROP ;
 : MOD /MOD DROP ;
-: */ * / ;
+: */ -ROT * SWAP / ;
 
 : NEGATE 0 SWAP - ;
 
 
 : I RSP@ 3 - @ ;
 
+: J RSP@ 6 - @ ;
+
 : ?LEAVE IMMEDIATE
         ' 0BRANCH , 13 ,
         ' R> , ' RDROP , ' RDROP ,
         SWAP DROP
 ;
 
-
+include ../examples/mandelbrot.4th