v/vlib/v/checker/tests/generics_non_generic_fn_cal...

7 lines
64 B
V

import math
fn main() {
x := math.sin<f64>(1.0)
println(x)
}