mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
examples: show how to call a simple v module from python (#13105)
This commit is contained in:
6
examples/call_v_from_python/test.v
Normal file
6
examples/call_v_from_python/test.v
Normal file
@@ -0,0 +1,6 @@
|
||||
module test
|
||||
|
||||
[export: 'square']
|
||||
fn square(i int) int {
|
||||
return i * i
|
||||
}
|
Reference in New Issue
Block a user