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
2module test_print
3
4@[export: 'foo']
5fn show_foo(s &char) {
6 println(unsafe { cstring_to_vstring(s) })
7}
8