# SPDX-License-Identifier: CC0-1.0 language = 'Lazy K' display = 'Lazy K (irori v1.0.0)' license = [{ name = 'MIT', url = 'https://github.com/irori/lazyk/blob/v1.0.0/LICENSE'}] filename = 'Main.lazy' install = ''' sudo apt update && sudo apt install -y gcc make wget cd /tmp wget https://github.com/irori/lazyk/archive/refs/tags/v1.0.0.tar.gz tar xvf v1.0.0.tar.gz cd lazyk-1.0.0 make sudo make install ''' compile = ''' timeout 0.01 lazyk -v0 Main.lazy > /dev/null || if [ $? -ne 124 ]; then rm Main.lazy; fi ''' object = 'Main.lazy' execution = [ 'lazyk', 'Main.lazy' ]