User since: |
Dec 22, 2002 at 10:42 UTC
(22 years ago) |
Last here: |
Sep 04, 2024 at 10:15 UTC
(2 weeks ago) |
Experience: |
17331
|
Level: | Abbot (19) |
Writeups: |
1939
|
Location: | UK - South West |
User's localtime: |
Sep 15, 2024 at 09:42 UTC
|
Scratchpad: |
View
|
For this user: | Search nodes |
|
# program1.pl 17 March 2000
$phrase = '123';
print $phrase+1,"\n";
@home = ("couch","chair","table");
print $home[1],"\n";
%longday = ("Sun", "sunday", "Mon", "Monday");
print $longday{"Sun"},"\n";
|