mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
7879bde8bb
fixed typos and macos errors
6 lines
68 B
Plaintext
6 lines
68 B
Plaintext
a := 'Hello'
|
|
b := 'World'
|
|
println('$a $b')
|
|
===output===
|
|
Hello World
|