mirror of
https://github.com/vlang/v.git
synced 2025-09-14 23:12:33 +03:00
8 lines
129 B
V
8 lines
129 B
V
|
|
fn test_cstring(){
|
|
w := c'world'
|
|
hlen := C.strlen(c'hello')
|
|
wlen := C.strlen(w)
|
|
assert hlen == 5
|
|
assert wlen == 5
|
|
}
|