Updated to Vlang 0.3.3

This commit is contained in:
RVG|lory 2023-04-09 12:24:30 +02:00 committed by GitHub
parent 86d897d580
commit 4c45648a79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 34 additions and 0 deletions

14
packages/vlang/0.3.3/run vendored Normal file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env bash
# Export environment variables
export VMODULES="$PWD"
export TMPDIR="$PWD"
# Put instructions to run the runtime
filename=$1
rename 's/$/\.v/' $filename # Add .v extension
shift
v run $filename.v "$@"