mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
examples: simplify the shebang in the v_script.vsh example
This commit is contained in:
parent
3ac3375b43
commit
3c5ae41712
@ -1,9 +1,13 @@
|
||||
#!/usr/local/bin/v run
|
||||
#!/usr/local/bin/v
|
||||
|
||||
// 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`.
|
||||
|
||||
// Note that you can also use: `#!/usr/bin/env -S v crun`, if your system supports the -S flag to env
|
||||
// The benefit is that in this case, v could be anywhere in your path, while /usr/bin/env is guaranteed
|
||||
// to be present on most Unix systems in that exact place.
|
||||
|
||||
for _ in 0 .. 3 {
|
||||
println('V script')
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user