This commit is contained in:
2023-01-06 11:40:56 +01:00
parent 92e5714f89
commit f8c6cced8d
12 changed files with 953 additions and 0 deletions

22
Lua/luftballons.pl Executable file
View File

@@ -0,0 +1,22 @@
#!/usr/bin/perl
use strict;
use warnings;
for (1..99) { print $_." Luftballons\n"; }
# This is a commented line
my $string = "Hello World!";
print $string."\n\n";
$string =~ s/Hello/Goodbye Cruel/;
print $string."\n\n";
finale();
exit;
sub finale { print "Fin.\n"; }