# SPDX-License-Identifier: CC0-1.0 language = 'Cyber' display = 'Cyber (Cyber v0.3)' license = [ { name = 'MIT', url = 'https://github.com/fubark/cyber/blob/master/LICENSE' }, ] filename = 'Main.cy' install = ''' curl -fsSL https://cyberscript.dev/install.sh | bash ''' compile = ''' if cyber compile Main.cy > compile-out 2>&1; then touch ok else cat compile-out 1>&2 fi ''' object = 'ok' execution = [ 'cyber', 'Main.cy', ]