Pugs.hs icon indicating copy to clipboard operation
Pugs.hs copied to clipboard

(ARCHIVE) Raku User's Golfing System in Haskell

Results 15 Pugs.hs issues
Sort by recently updated
recently updated
newest added

Probably quite low-hanging fruit.

``` < [Coke]> p: say 1...2 pugs: OUTPUT«*** ␤ Unexpected "2"␤ expecting operator, ":", "," or term postfix␤ at /tmp/iImo2stOFT line 1, column 9␤» ``` This is blocking several other...

``` r: sub foo { state $a = 5; state $b = 42; $a++; $b--; say "$a $b" }; foo; foo; foo rakudo a8086d: OUTPUT«6 41␤7 40␤8 39␤» r: sub...

From S03, about comparison operators: These operators compare their operands using numeric, string, or C semantics respectively, and depending on the order return one of COrder::Increase, COrder::Same, or COrder::Decrease (which...

While there are many variants of Q quoting, the basic "Q" will allow us to run more tests, and is sufficient to close this ticket. e.g.: say Q{hello}; Should output...