v/examples/v_script.vsh

32 lines
738 B
V Shell
Raw Normal View History

2020-10-02 05:18:08 +02:00
#!/usr/local/bin/v run
// The shebang above associates the file to V on Unix-like systems,
// so it can be run just by specifying the path to the file
// once it's made executable using `chmod +x`.
2020-10-02 05:18:08 +02:00
for _ in 0..3 {
println('V script')
}
2020-10-02 05:18:08 +02:00
println('\nMaking dir "v_script_dir".')
mkdir('v_script_dir')
2020-10-02 05:18:08 +02:00
println("\nEntering into v_script_dir and listing it's files.")
chdir('v_script_dir')
files := ls('.') or { panic(err) }
println(files)
2020-10-02 05:18:08 +02:00
println('\nCreating foo.txt')
create('foo.txt')?
2020-10-02 05:18:08 +02:00
println('\nFiles:')
again_ls := ls('.') or { panic(err) }
println(again_ls)
2020-10-02 05:18:08 +02:00
println('\nRemoving foo.txt and v_script_dir')
rm('foo.txt')
chdir('../')
rmdir('v_script_dir')
2020-10-02 05:18:08 +02:00
print('\nDoes v_script_dir still exist? ')
println(exists('v_script_dir'))