RosettaCodeData/Task/Nth-root/V-(Vlang)/nth-root.v
2023-07-01 13:44:08 -04:00

5 lines
74 B
V

import math
fn main() {
println("cube root of 5 is: ${math.cbrt(5)}")
}