markjreed
markjreed
## Description If the cred_profile configuration parameter has the form "accXrole" for any character X, it is treated as "acc-role" with X as the delimiter between account and role in...
Needed for git.
`asdf list perl` results in a bogus message claiming a lack of available versions: ``` $ asdf list perl *5.40.1 No compatible versions available (perl ) ``` asdf info: ```OS:...
## The Problem I tried defining a custom postcircumfix indexing operator; just processing the definition makes rakudo hang for multiple seconds. ## Expected Behavior Compiling a sub shouldn't take multiple...
Simple example: ``` %import textio plane { struct Point { ubyte x ubyte y } } txt { %option merge sub print_pt(^^plane.Point p) { txt.chrout('(') txt.print_ub(p.x) txt.chrout(',') txt.print_ub(p.y) txt.chrout(')') }...
Inequality results seem to be backwards when a long array element is involved ``` %import textio %zeropage basicsafe main { sub start() { long[] foo = [1,2,3] long bar =...
Since `memory() `does its allocation at compile time, its return value should be considered a constant and variables initialized with it should be declarable as `const`.
Builiding the top of the tree on macOS I ran into a couple issues that needed manual intervention. 1. In engine/getopt.sh, there's an `#if defined(__GNU_LIBRARY)` check around the proper extern...