perl6
Raku is an expressive and feature-rich programming language designed by Larry Wall and developed by the community. Features include: object-oriented programming, functional programming primitives, parallelism, concurrency, asynchrony, definable grammars for pattern matching and generalized string processing, and optional and gradual typing.
Here are 348 public repositories matching this topic...
-
Updated
Dec 2, 2020 - Raku
-
Updated
Nov 1, 2020 - Python
-
Updated
Jun 16, 2019 - Perl
I was expecting this code to work:
my $ua = HTTP::UserAgent.new(timeout => 10);
say $ua # HTTP::UserAgent.new(timeout => 180, …)But it doesn't, and it seems like I have to set the timeout with $ua.timeout = 10. Would've been great if it was possible to set the timeout right from the constructor.
-
Updated
Apr 29, 2017 - Perl 6
-
Updated
Dec 1, 2020 - Raku
-
Updated
Jun 23, 2020 - Raku
-
Updated
Oct 25, 2019
-
Updated
Jun 14, 2020 - Jupyter Notebook
-
Updated
Nov 14, 2020 - Raku
-
Updated
Jun 29, 2019 - Perl 6
-
Updated
May 28, 2020 - Perl 6
-
Updated
Oct 25, 2019
-
Updated
Nov 8, 2020 - C++
-
Updated
Mar 6, 2019 - Perl 6
Created by Larry Wall
Released December 25, 2015
- Organization
- Raku
- Website
- www.raku.org
- Wikipedia
- Wikipedia
I discovered this one as I was working on #498.
The problem is we catch absolutely all parameter mismatches, including "legitimate" ones which happen long after we've made the call to
MAIN.