Skip to content

Instantly share code, notes, and snippets.

@lizmat

lizmat/NL.raku Secret

Created October 4, 2023 09:11
Show Gist options
  • Save lizmat/9852a6fb05f5171e5583bbea7c200823 to your computer and use it in GitHub Desktop.
Save lizmat/9852a6fb05f5171e5583bbea7c200823 to your computer and use it in GitHub Desktop.
Raku in Dutch
als "a" voor "b" en "c" na "a" {
zeg "foo";
}
behoeft Test;
importeer Test;
geen strict;
gebruik strict;
als "a" voor "b" en "c" na "a" {
zeg "foo";
}
anders {
zeg "bar"
}
met Int {
zeg "ok"
}
ofmet 666 {
zeg "ofmet"
}
gegeven 42 {
indien Int {
zeg "Int"
}
gebrek {
zeg "gebrek"
}
}
zeg "zonder" zonder Int;
vooralle ^3 { .druk }
.zeg gegeven 42;
zeg "als" als 42;
zeg "tenzij" tenzij Nil;
zeg "zonder" zonder Int;
zeg "tot" tot ++$ == 2;
zeg "terwijl" terwijl ++$ < 2;
.zeg tenzij 666;
.zeg vooralle <a b c>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment