```v
fn main() {
println('...'); println('...')
}
oh, separate every statement with space only.
The way the parser works, you can already do
println('...') println('...')
In the future, a semicolon will be introduced for this, but it will be removed by vfmt anyway, like in Go.
Most helpful comment
The way the parser works, you can already do
In the future, a semicolon will be introduced for this, but it will be removed by vfmt anyway, like in Go.