Some formatting changes

This commit is contained in:
Radon Rosborough 2021-12-22 12:49:50 -08:00
parent 11df846f5d
commit bd3ebcd3e5
1 changed files with 5 additions and 3 deletions

View File

@ -5,7 +5,7 @@ name: "V"
info: info:
year: 2019 year: 2019
desc: "V is a simple, statically-typed compiled programming language designed for building maintainable software" desc: "Simple, statically-typed compiled programming language designed for building maintainable software"
ext: ext:
- v - v
web: web:
@ -27,8 +27,10 @@ install:
manual: | manual: |
git clone https://github.com/vlang/v.git git clone https://github.com/vlang/v.git
pushd v pushd v
make make
cp v ${pkg}/usr/local/bin cp v "${pkg}/usr/local/bin/"
popd popd
main: "main.v" main: "main.v"
@ -44,7 +46,7 @@ format:
run: | run: |
v fmt main.v v fmt main.v
input: | input: |
fn main() fn main()
{ {
println("Hello, world!") println("Hello, world!")
} }