mirror of
https://github.com/vlang/v.git
synced 2025-09-14 06:52:36 +03:00
9 lines
107 B
V
9 lines
107 B
V
|
|
fn C.puts(charptr) int
|
|
|
|
fn test_cstring(){
|
|
h := c'world'
|
|
C.puts(c'hello')
|
|
C.puts(h)
|
|
assert true
|
|
}
|