#
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 326 public repositories matching this topic...
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
Jul 29, 2020 - Raku
-
Updated
Aug 14, 2020
FCO
opened
Oct 11, 2018
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
Raku Automation Framework
-
Updated
Sep 13, 2020 - Raku
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}