5 lines
61 B
Text
5 lines
61 B
Text
|
|
func nthRoot(x,a){
|
||
|
|
send x^(1/a);
|
||
|
|
}{a=2};
|
||
|
|
log(nthRoot(8,3));
|