examples: V script

pull/2418/head
Swastik Baranwal 2019-10-18 22:48:30 +05:30 committed by Alexander Medvednikov
parent bb9d95e9aa
commit 5c5cdea4f2
1 changed files with 39 additions and 0 deletions

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)
}