Install
#!/bin/bash
export V_DOWNLOAD_URL=https://github.com/vlang/v/releases/latest/download/v_linux.zip
export VROOT=/opt/engines/v
export PATH=$PATH:$VROOT
if [ ! -f "v_linux.zip" ]; then
wget "$V_DOWNLOAD_URL"
fi
unzip v_linux.zip -d /opt/engines
echo "Installed V"
v -v