5 lines
74 B
V
5 lines
74 B
V
import math
|
|
|
|
fn main() {
|
|
println("cube root of 5 is: ${math.cbrt(5)}")
|
|
}
|