mirror of
https://github.com/vlang/v.git
synced 2025-08-03 17:57:59 -04:00
9 lines
153 B
V
9 lines
153 B
V
fn main() {
|
|
sys_write(1, c'hello\n', 6)
|
|
s := 'test string\n'
|
|
sys_write(1, s.str, u64(s.len))
|
|
a := s[0]
|
|
println('Hello freestanding!')
|
|
println(a)
|
|
}
|