3 lines
55 B
Forth
3 lines
55 B
Forth
|
|
: ** ( n m -- n^m )
|
||
|
|
1 swap 0 ?do over * loop nip ;
|