mirror of
https://github.com/vlang/v.git
synced 2025-09-14 15:02:33 +03:00
6 lines
71 B
V
6 lines
71 B
V
module test
|
|
|
|
[export: 'square']
|
|
fn square(i int) int {
|
|
return i * i
|
|
}
|