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