[ create a new paste ] login | about

Link: http://codepad.org/xs6qsHl6    [ raw code | output | fork ]

sironekotoro - Perl, pasted on Sep 23:
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env perl
use strict;
use warnings;

my $name   = "sironekotoro";
my $age    = "3*";
my $height = 172;

print "My name is $name\n";
print "$age years old\n";
print "my height is $height\n";


Output:
1
2
3
My name is sironekotoro
3* years old
my height is 172


Create a new paste based on this one


Comments: