Adjust format input

This commit is contained in:
Chris Hallberg 2021-11-03 16:37:24 -04:00 committed by GitHub
parent d70f17a088
commit 90dc3ff518
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -13,7 +13,7 @@ install:
main: "main.v" main: "main.v"
template: | template: |
fn main() { fn main() {
println('hello world') println('Hello, world!')
} }
compile: | compile: |
@ -23,6 +23,7 @@ format:
run: | run: |
v fmt -w main.v v fmt -w main.v
input: | input: |
fn main() { fn main()
println('hello world') {
println("Hello, world!")
} }