1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/call_v_from_python/test.v

7 lines
71 B
V
Raw Normal View History

module test
[export: 'square']
fn square(i int) int {
return i * i
}