Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v
/
examples
/
call_v_from_c
/
v_test_print.v
7
lines
·
6
sloc
·
219 bytes
·
a80bc2331450fc28c900097f8afafe173f161d27
Raw
1
// vtest build: false // Check the README.md for detailed information; this file needs special compilation options
2
module
test_print
3
4
@[export:
'foo'
]
5
fn
show_foo(s &char) {
6
println(unsafe { cstring_to_vstring(s) })
7
}
8