Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
gen
/
c
/
testdata
/
freestanding_define
/
a_notd_freestanding.c.v
8
lines
·
6
sloc
·
146 bytes
·
008aaad99981918c51194d7aaaaaccb4c258f244
Raw
1
module
freestanding_define
2
3
const
f = $embed_file(@FILE).len
4
5
pub
fn
hi() {
6
println(
'hi from a_notd_freestanding.c.v'
)
7
println(
'f.len: ${f}'
)
8
}
9