Help for this page

Select Code to Download


  1. or download this
        sub foo {
            rand (2) < 1 ? 0 : bless [] => "foo"
        }
    
  2. or download this
    package Foo;
    
    sub new { bless [], $_[0] }
    sub confuse { bless $_[0], 'ARRAY' }