Help for this page

Select Code to Download


  1. or download this
    class Dot {
        has $.x;
    ...
    
    my $a = Dot.new(x => 23, y => 42, z => 2);
    say $_ for $a.get;
    
  2. or download this
    23
    42
    (Any)
    
  3. or download this
    Use of uninitialized value of type Any in numeric context ...