Help for this page

Select Code to Download


  1. or download this
    my $foo = Something.new();
    
  2. or download this
    sub foo($x, $y) { say $x ~ $y }
    my $foo_ref = &foo;   # leaves $foo_ref writable
    ...
    c(&foo);
    c($foo);
    c($foo_ref);