RosettaCodeData/Task/Currying/Forth/currying.fth

7 lines
144 B
Forth
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
: curry ( x xt1 -- xt2 )
swap 2>r :noname r> postpone literal r> compile, postpone ; ;
5 ' + curry constant +5
5 +5 execute .
7 +5 execute .