Skip to content

Instantly share code, notes, and snippets.

@tsucchi
Created November 30, 2013 07:02
Show Gist options
  • Select an option

  • Save tsucchi/7716210 to your computer and use it in GitHub Desktop.

Select an option

Save tsucchi/7716210 to your computer and use it in GitHub Desktop.
小文字のSTDINなんて書けるんですねー。知らんかった。。。(使っちゃいけないとおもう)
#!/usr/bin/perl
use strict;
use warnings;
while ( my $in = <stdin> ) {
print "$in";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment