in reply to Re: Firefly
in thread Firefly

"You can't take the sky from me." ... hrmm ... We can get creative here.
package Me; TIESCALAR { bless \(my $x = $_[1]), $_[0] } FETCH { die "cannot take it away" } package main; tie $0, Me; eval { $ENV{'you'} = $0 =~ s/sky//; 1 } || print $@;

My criteria for good software:
  1. Does it work?
  2. Can someone else come in, make a change, and be reasonably certain no bugs were introduced?