# SPDX-License-Identifier: CC0-1.0 language = 'Prolog' display = 'Prolog (SWI-Prolog 9.2.9)' license = [ { name = 'BSD-2-Clause', url = 'https://www.swi-prolog.org/license.html' }, ] filename = 'Main.pl' install = ''' sudo apt-get install -y software-properties-common sudo apt-add-repository -y ppa:swi-prolog/stable sudo apt-get update sudo apt-get install -y swi-prolog ''' compile = ''' swipl -O -g main -o a.out -c Main.pl ''' object = 'a.out' execution = [ './a.out', ]