Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl6
    use v6;
    ...
    
    say $Paul.id;
    say $Paul.username;
    
  2. or download this
    class User is rw {
      has Int $.id;
      has Str $.username when not /admin|root/;
    }