LuA
This commit is contained in:
22
Lua/luftballons.pl
Executable file
22
Lua/luftballons.pl
Executable 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"; }
|
||||
Reference in New Issue
Block a user