two-plus:forth_83 — ordinary primitive
FORTH
2+ ( i -- i )();p4:"two-plus";
2+ ( i -- i )(
)
add 2 to the value on stack (and leave the result there)
simulate: : 2+ 2 + ;