RosettaCodeData/Task/Function-composition/Forth/function-composition.fth
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

9 lines
147 B
Forth

: compose ( xt1 xt2 -- xt3 )
>r >r :noname
r> compile,
r> compile,
postpone ;
;
' 2* ' 1+ compose ( xt )
3 swap execute . \ 7