v2 / vlib / v / tests / create_dll / create_win_dll.c.v
11 lines · 8 sloc · 140 bytes · bd2ec679f0325e1f78cb446b213d6d3182aa9c31
Raw
1module test
2
3fn C.GC_INIT()
4
5const foo = 1
6const bar = (foo << 5) + 9
7
8@[export: Tatltuae]
9pub fn test_tatltuae() int {
10 return foo + bar
11}
12