#
Raku
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 450 public repositories matching this topic...
Many examples of Raku code
-
Updated
Oct 27, 2021 - Raku
tbrowder
commented
May 11, 2020
The '$' symbol has a special meaning in the sprintf format string and must be escaped if intended to be used as a literal character. That fact is very briefly described in an offhand manner and, as a result, I, dummy, have twice this year wasted lots of time finding my error. I propose some solutions:
- better describe it in the docs
- file an issue with Rakudo to generate a better error m
Raku / Perl6 Module Management
-
Updated
Dec 19, 2021 - Raku
-
Updated
Oct 3, 2021
FCO
opened
Oct 11, 2018
Raku Automation Framework
-
Updated
Dec 25, 2021 - Raku
Raku module for interacting with the Discord API.
-
Updated
Jul 6, 2021 - Raku
Uzu is a static site generator with built-in web server, file modification watcher, live reload, i18n, themes, multi-page support, inject external data via local Raku module, and external pre/post command execution.
-
Updated
Sep 13, 2020 - HTML
Source code for modules.raku.org - Raku module listing
-
Updated
Jun 10, 2021 - Perl
Created by Larry Wall
Released December 25, 2015
- Organization
- Raku
- Website
- www.raku.org
- Wikipedia
- Wikipedia
The Problem
This code (note the missing comma)
produces what I assume is an exception in the compiler:
The same thing happens with
{:x($x) :y($x)}{:x<a> :y<b>}{:$x :y($x)}These expressions produce a Hash with two elements:
{:x($x) :y(1)}{:$x :1y}