Create vlang.yaml

This commit is contained in:
Chris Hallberg 2021-11-03 16:28:14 -04:00 committed by GitHub
parent 0d92a77922
commit 29c9cc375d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

28
langs/vlang.yaml Normal file
View File

@ -0,0 +1,28 @@
id: "v"
aliases:
- "vlang"
name: "V"
install:
manual: |
git clone https://github.com/vlang/v
pushd v
make
popd
main: "main.v"
template: |
fn main() {
println('hello world')
}
compile: |
v run main.v
format:
run: |
v fmt main.v
input: |
fn main() {
println('hello world')
}