numbers and strings are scalar, mkay?

This commit is contained in:
Dan Buch 2011-01-03 21:58:26 -05:00
parent f11267e7f3
commit cd4a9fd937

9
cli/scalar_numbers.pl Normal file
View File

@ -0,0 +1,9 @@
#!/usr/bin/perl
use strict;
use warnings;
my $age = 30;
print "Hello $age year old.\n";
1;