6 lines
72 B
Plaintext
6 lines
72 B
Plaintext
|
#!/usr/bin/env perl
|
||
|
use warnings;
|
||
|
print "a: ";
|
||
|
my $a = "foo";
|
||
|
print $a;
|