Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
gen
/
c
/
testdata
/
platform_wrapper
/
file_macos.c.v
10
lines
·
8
sloc
·
163 bytes
·
1b9a8b996dafa08d698eda1da0e6459ee122bfe9
Raw
1
module
platform_wrapper
2
3
pub
fn
abc() int {
4
return
987654321
5
}
6
7
pub
fn
fn_defined_on_macos() int {
8
// println('hi from ${@FN}, in file_macos.c.v')
9
return
789
10
}
11