# SPDX-License-Identifier: CC0-1.0 language = 'Perl' display = 'Perl (perl 5.38.2)' license = [ { name = 'GPL-1.0-or-later', url = 'https://dev.perl.org/licenses/' }, { name = 'Artistic-1.0-Perl', url = 'https://dev.perl.org/licenses/' }, ] filename = 'Main.pl' install = ''' sudo apt install -y perl=5.38.2-3.2ubuntu0.2 ''' compile = ''' perl -c Main.pl && touch ok ''' object = 'ok' execution = [ 'perl', 'Main.pl', ]