Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/pugs
    
    ...
    say "x = *$x* lst = *",~@lst,"*";
    #is($x, 'qqq', '... default named parameter with $CALLER_ and a list',
    + :todo<bug>);
    #is(~@lst, 'a b c', '... list after default named parameter with $CALL
    +ER_', :todo<bug>);
    
  2. or download this
    x = *a* lst = *b c*
    
  3. or download this
    x = *qqq* lst = *a b c*