1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-13 18:24:39 +02:00

tamed indentation/whitespace

This commit is contained in:
Mark Canlas
2015-06-10 00:00:12 +02:00
parent e07c4e7b8b
commit 75ecb5aa81

View File

@@ -130,7 +130,9 @@ my @lines = <$in>;
sub logger {
my $logmessage = shift;
open my $logfile, ">>", "my.log" or die "Could not open my.log: $!";
print $logfile $logmessage;
}