Nick Bywater
Results
2
comments of
Nick Bywater
The [binding operator](https://docs.raku.org/language/operators#index-entry-Binding_operator) documentation has this example. > my $a = 42; > my $b := $a; > $b++; > say $a; So, perhaps the variable binding example, in the...
Okay, I compiled the following code from a .raku script without errors. Raku and rakudo are new to me, so I didn't realize that there might be different errors when...