aboutsummaryrefslogtreecommitdiffstats
path: root/tests/define-mult.forth
blob: 5b6f798bba90674ffe4c37a47b26a4f628333992 (plain)
1
2
3
4
5
6
INPUT
: multrec over if rot swap over + rot 1 - swap multrec then ;
: mult 0 multrec ;
6 8 mult .
OUTPUT
48