ohmycloud

Results 9 comments of ohmycloud

Is this because the comma operator lead to a List? ``` my $a = 1,2; dd $a; # Int $a = 1 my ($a, $b) = 1,2 dd $a; #...

There are two broken links in the https://docs.perl6.org/type/CompUnit::Repository::Installation page: CompUnit::Repository and CompUnits, shows 404 when clicked.

```powershell rye publish ` --repository devpi ` --repository-url http://pypi.private.repository ` --username test` --token a_very_complex_password ` --skip-existing ``` Providing both `--repository` and `--repository-url` is fine for me, and use `--token` instead...

Thanks very much! my script now works!

On Windows, superscript ² is printed as `DIGIT TWO` in REPL: ```raku [0] > .say for "3²".uninames DIGIT THREE DIGIT TWO ``` Only output the superscript ² in REPL: ```...

PS D:\learning\raku> `raku -e '.say for "3²".uninames'` in the Windows Powershell, it output `DIGIT NINE`. PS D:\learning\raku> `raku -e '.say for "²".uninames'`, output `DIGIT TWO` On CentOS 7: ``` raku...

@timo It output `虏` for superscript 2: ``` raku -e '.raku.say for @*ARGS' '.say for "3²".uninames' ".say for 3虏.uninames" raku -e '.raku.say for @*ARGS' ² "虏" ```

My default Powershell version is `5.1.22000.2538`: ``` PS C:\Users\ohmycloud> echo $PSVersionTable Name Value ---- ----- PSVersion 5.1.22000.2538 PSEdition Desktop PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...} BuildVersion 10.0.22000.2538 CLRVersion 4.0.30319.42000 WSManStackVersion 3.0...