#!/usr/bin/perl use strict; @:: = qw( this program uses empty variable names ); for $:: (@::) { print $::; } # ::; looks confusing ;) open ::, ".cshrc"; print scalar <::>; # is there no end to this madness? close ::;