- or download this
#!/usr/bin/pugs
use v6;
...
say @result;#
@array = <a b b c d e b b b b f b>;
# @array.uniq @array.max @array.min; to do in pugs
- or download this
#!/usr/bin/pugs
use v6;
...
say %hash.exists("b");#prints 1
%hash.exists("x");
- or download this
#!/usr/bin/pugs
use v6;
...
say "z $z";
}