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

examples: V script

This commit is contained in:
Swastik Baranwal 2019-10-18 22:48:30 +05:30 committed by Alexander Medvednikov
parent bb9d95e9aa
commit 5c5cdea4f2

39
examples/v_script.vsh Normal file
View File

@ -0,0 +1,39 @@
fn main() {
for _ in 0..5 {
println('V script')
}
println('deploying...')
println('Files')
foo := ls('.') or { panic(err) }
println(foo)
println('')
rm('a.out')
println('Making dir name and creating foo.txt')
mkdir('name')
create('foo.txt')
foo_ls := ls('.') or { panic(err) }
println(foo_ls)
println('')
println('Entering into name')
chdir('name')
foo_ls2 := ls('.') or { panic(err) }
println(foo_ls2)
println('')
println('Removing name and foo.txt')
println('')
chdir('../')
rmdir('name')
rm('foo.txt')
again := ls('.') or { panic(err) }
println(again)
}