mirror of
https://github.com/vlang/v.git
synced 2025-08-03 17:57:59 -04:00
8 lines
219 B
V
8 lines
219 B
V
// vtest build: false // Check the README.md for detailed information; this file needs special compilation options
|
|
module test_print
|
|
|
|
@[export: 'foo']
|
|
fn show_foo(s &char) {
|
|
println(unsafe { cstring_to_vstring(s) })
|
|
}
|