# SPDX-License-Identifier: CC0-1.0 language = 'V' display = 'V (0.4.10)' license = [ { name = 'MIT', url = 'https://github.com/vlang/v/blob/master/LICENSE' }, ] library.vsl = { license = [ { name = 'MIT', url = 'https://github.com/vlang/vsl/blob/master/LICENSE' }, ], version = '' } library.vtl = { license = [ { name = 'MIT', url = 'https://github.com/vlang/vtl/blob/main/LICENSE' }, ], version = '' } library.proconio = { license = [ { name = 'MIT', url = 'https://github.com/lemoncmd/proconio/blob/main/LICENSE' }, ], version = '' } filename = 'Main.v' install = ''' sudo apt-get update sudo apt-get install -y git clang wget -q -O /tmp/v_linux.zip https://github.com/vlang/v/releases/download/0.4.10/v_linux.zip unzip /tmp/v_linux.zip pushd v sudo ./v symlink v install vsl v install vtl v install lemoncmd.proconio popd ''' compile = ''' v -prod -cc clang -no-bounds-checking -o a.out Main.v ''' object = 'a.out' execution = [ './a.out', ]