## Demostrates use of a Handle as a temp file#use Mac::Memory;$h = new Handle;$s = $h->open("w");print $s "For those about to hack, we salute you!";print $h->size, "\n", $h->get, "\n";close($s);dispose $h;