Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
create_dll
/
create_win_dll.c.v
11
lines
·
8
sloc
·
140 bytes
·
bd2ec679f0325e1f78cb446b213d6d3182aa9c31
Raw
1
module
test
2
3
fn
C.GC_INIT()
4
5
const
foo = 1
6
const
bar = (foo << 5) + 9
7
8
@[export: Tatltuae]
9
pub
fn
test_tatltuae() int {
10
return
foo + bar
11
}
12