mirror of
https://github.com/vlang/v.git
synced 2025-09-07 22:30:57 -04:00
8 lines
108 B
V
8 lines
108 B
V
#include <stdio.h>
|
|
|
|
fn C.puts(&char) int
|
|
|
|
fn main() {
|
|
C.puts(c'V can call C functions like `puts` too.')
|
|
}
|