This commit is contained in:
Your Name
2023-10-03 23:28:51 +02:00
parent 9a83c28137
commit 42f2899bbf
162 changed files with 9 additions and 13 deletions

22
WS22_23/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"; }