logoalt Hacker News

librastevelast Wednesday at 4:18 PM1 replyview on HN

Raku types are a bit thicker than paint https://gist.github.com/raiph/849a4a9d8875542fb86df2b2eda892...


Replies

dnauticslast Thursday at 1:46 PM

    print 42 + 99;          # 141
    print &print.file ;     # ...src/core.c/io_operators.rakumod
    print &infix:<+>.file;  # ...src/core.c/Numeric.rakumod
    print ?CORE::<&print>;  # True 
I barely understood these four example lines.