| User since: |
Dec 22, 2002 at 10:42 UTC
(23 years ago) |
| Last here: |
Oct 13, 2025 at 16:16 UTC
(9 weeks ago) |
| Experience: |
17367
|
| Level: | Abbot (19) |
| Writeups: |
1939
|
| Location: | UK - South West |
| User's localtime: |
Dec 13, 2025 at 17:21 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";
|