3 lines
97 B
Factor
3 lines
97 B
Factor
: pow ( f n -- f' )
|
|
dup 0 < [ abs pow recip ]
|
|
[ [ 1 ] 2dip swap [ * ] curry times ] if ;
|