The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!/usr/bin/perl -w
# This is a pseudo Perl file to test Kate's Perl syntax highlighting.
# TODO: this is incomplete, add more syntax examples!
$VERSION = sprintf '4.%03d', q$Revision: #24 $ =~ /\D(\d+)\s*$/;
sub prg($)
{
my $var = shift;
$var =~ s/bla/foo/igs;
$var =~ s!bla!foo!igs;
$var =~ s#bla#foo#igs;
$var =~ tr/a-z/A-Z/;
($match) = ($var =~ m/(.*?)/igs);
$test = 2/453453.21;
$test /= 2;
print qq~d fsd fsdf sdfl sd~
$" = '/';
$foo = <<__EOF;
d ahfdklf klsdfl sdf sd
fsd sdf sdfsdlkf sd
__EOF
$x = "dasds";
next if( $match eq "two" );
next if( $match =~ /go/i );
@array = (1,2,3); # a comment
@array = qw(apple foo bar);
push(@array, 4);
%hash = (red => 'rot',
blue => 'blau');
print keys(%hash);
}
=head 1 Pod
We are now in POD
=cut
sub blah {
}
&blah;
prg("test");
1;