2 lines
73 B
Forth
2 lines
73 B
Forth
: agm \ a b -- m
|
|
while( 2dup <> ) [ 2dup + 2 / -rot * sqrt ] drop ;
|
: agm \ a b -- m
|
|
while( 2dup <> ) [ 2dup + 2 / -rot * sqrt ] drop ;
|