1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

github actions: simplify ci.yml, test js backend on windows

This commit is contained in:
Zaoqi
2019-09-21 23:34:17 +08:00
committed by Alexander Medvednikov
parent f1d5f8e2bf
commit 104e4c9fc7
3 changed files with 40 additions and 31 deletions

5
examples/hello_v_js.v Normal file
View File

@ -0,0 +1,5 @@
fn main() {
for i := 0; i < 3; i++ {
println('Hello from V.js')
}
}