The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#=Code-Objekt
my $code = sub {say "code!"};
$code(); # gibt "code!" aus, Klammern sind nötig!
#=Anwendung von Code-Objekten: for-Schleifen
for 1..10 -> {
	say
}