Some formatting changes
This commit is contained in:
parent
11df846f5d
commit
bd3ebcd3e5
|
@ -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!")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue