Help for this page

Select Code to Download


  1. or download this
    # Key-value pairs
    my $point1 = Point->new(x => 10, y => 20);
    
    # Hashref
    my $point2 = Point->new({ x => 10, y => 20 });
    
  2. or download this
    use v5.12;
    
    ...
    # Standard Moose BUILDARGS is fallback...
    print Point->new(x => 10, y => 20)->dump;
    print Point->new({ x => 10, y => 20 })->dump;