This repository was archived by the owner on Oct 28, 2024. It is now read-only.
- NOTICE Option declaration syntax changed from
$*footo$:foo - Implemented List index accessors
my @a = <zero one two three>; say @a[1,2] # one, two my $json = ["zero","one", "two","three"]; say $json[1,2] # ["one","two"]
- Completely Re-implemented cli with Getopt::Parse (included in lib
for now) "\c[...]"now pads emojis (So) with a space so they display properly- Add new shorthand
>info/warnsyntax which is short for>info !>warn - Add new
is logged-astrait for declaring that a command should be
logged with a certain path e.g.
constant Cmd $:docker is logged-as("\c[WHALE]") - Update Docker for new "docker community edition" release method
- Add JSON setting methods
my $json = {}; $json[0] = "foo"; $json<foo> = "bar" $json<bar> = { "some" : "object" }; - Add
JSON.mergeandJSON.ACCEPTS