Created
September 14, 2013 05:22
-
-
Save alcidesfp/6559024 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl -w | |
print "Hola ¿Cual es tu nombre?: "; | |
chomp(my $nombre = readline); | |
print "¿En que año naciste?: "; | |
chomp(my $ann = readline); | |
print "Hola $nombre.\n"; | |
print "En el año 2014 tendrás ", (2014-$ann), " años.\n"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment