1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/call_v_from_c/v_test_math.v
2022-09-25 22:52:40 +03:00

14 lines
226 B
V

module test_math
import math
[export: 'square']
fn calculate_square(i int) int {
return i * i
}
[export: 'sqrt_of_sum_of_squares']
fn calculate_sqrt_of_sum_of_squares(x f64, y f64) f64 {
return math.sqrt(x * x + y * y)
}