Help for this page

Select Code to Download


  1. or download this
    package C1;
    use Moose;
    ...
    
    augment html => sub { return 'C2'; };
    
  2. or download this
    warn C2->new->html;
    
    
    # yields
    # <html><body>C2</body></html>
    
  3. or download this
    package C1;
    use Moose;
    ...
    
    augment html => sub { return 'C2'; };
    
  4. or download this
    warn C2->new->html;
    
    # yields
    # <html><head>C2</head><body>C2</body></html>