Puts for old versions of Perl?
SoftwareRuby developer complaining to me today that Perl doesn't have a puts method.
#!/usr/bin/env/perl -w use strict; my $goto = "K-K-K-K-Kathmandu!"; &puts("I think I'm going to…", $goto); sub puts { print "@_n"; }
Problem solved! ^_^