tdro

Another wandering soul whispering into the void. If you are looking for my blog you are in the wrong place. The profile and header pictures are brought to you by cdd20.

tdro micro.thedroneely.com (edited) view
  • Markdown Plaintext Embed Permalink
  • 109/50 words 36s read

    Some of my configuration files are online aren’t they? Raku is one of the most interesting, if not the most. I’m not an expert but it pretty much has every language construct ( promises) plus exotic stuff. The exotic operators are strangely intuitive (and “hyped”).

    raku
    my @bin = 1..3;
    @bin>>++;
    say @bin;
    My array (@) named bin has numbers 1 to 3 (1..3) like this [ 1 2 3 ]. The hyper operator »++ increments (++) its items by 1. Say prints [ 2 3 4 ].

    I use it for quick with the multi dispatch CLI feature. The logo is a butterfly (or maybe it’s a raccoon).

    #gists