Siavash Askari Nasr
Siavash Askari Nasr
## The problem The behavior of the `where` clause in assignment differs from its use in variable and signature binding. I could not find this information in the docs. ```perl6...
```perl6 say join ', ', , 'd', 'e' , 'f'; OUTPUT: «a, b, c, d, e, f» ``` At first I thought that the `join` sub flattening everything was unexpected,...
If a module cannot be reached because the host server is down, the module won't be included in [projects1.json](http://ecosystem-api.p6c.org/projects1.json) and [projects.json](http://ecosystem-api.p6c.org/projects.json). And the module manager(zef) would not be able to...
I created a website for Raku. You can view the ~~demo~~ website [here](https://www.raku-lang.ir/en/). Its source code is available [here](https://github.com/CIAvash/raku-website). Features: - Created with [Hugo](https://gohugo.io/): it's fast and has a lot...
While I was working on my [Curry](https://github.com/CIAvash/Curry) module, I stumbled upon things that I consider issues. Now, some of them might be bugs, but most of them seem to be...
I see no way of finding if a parameter is definite, in roast, unless I missed it. Raku docs don't have any information about it either. The only way I...
In this issue I want to talk about the placement of a few things and also addition of new code samples. People should see the homepage and know what to...
In Raku, one can specify both single and multi-line docs, just like normal comments. Example: ```raku # A normal comment #| A documentation AKA POD declaration sub foo {} ```
I set the proxy using the `HTTP_PROXY` environment variable, and depending on the website's protocol, HTTP::UserAgent does two things: - http://httpbin.org/ip: it says "Invalid header received from client." - https://httpbin.org/ip:...
I see `init-template` and `class-set-template-from-resource` in `Widget.pm6`, but are all commented.