1234567891011121314
#!/usr/bin/perluse warnings;use strict;my $string = "Test";open(LGD, ">Logdatei.txt") or die $!;if ($string eq "Test") { print LGD "OK\n";} # ifelse { print LGD "KO\n";} # elseclose(LGD) or die $!;