Skip to content

Instantly share code, notes, and snippets.

@tomcha
Created November 30, 2015 03:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomcha/3ac17e4b20e1d7c25ceb to your computer and use it in GitHub Desktop.
Save tomcha/3ac17e4b20e1d7c25ceb to your computer and use it in GitHub Desktop.
24
#!/usr/bin/env perl
use strict;
use warnings;
my $year;
my $month;
my $day;
print '誕生年を入力して下さい>>>';
$year = <STDIN>;
print '誕生月を入力して下さい>>>';
$month = <STDIN>;
print '誕生日を入力して下さい>>>';
$day = <STDIN>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment