mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
6 lines
104 B
V
6 lines
104 B
V
module test_print
|
|
|
|
@[export: 'foo']
|
|
fn show_foo(s &char) {
|
|
println(unsafe { cstring_to_vstring(s) })
|
|
}
|