HackerTrans
TopNewTrendsCommentsPastAskShowJobs

p6steve

no profile record

Submissions

Raku and Rust: A Romance?

p6steve.wordpress.com
3 points·by p6steve·hace 4 años·0 comments

comments

p6steve
·hace 3 años·discuss
I really like sigils for several reasons and I do miss them when in non sigil languages - imo raku made two big improvements over perl that is to avoid changing the sigil on accessing an item and to have an unsigilled option for people who don't like them https://rakujourney.wordpress.com/2022/12/24/on-sigils/
p6steve
·hace 4 años·discuss
in Raku, this is:

class A {

    has $!bar;    #private
    has $.baz;    #public (with autogenerated accessors)

    method !foo {}     #private
    method  foz {}     #public
}
p6steve
·hace 4 años·discuss
Hi @ritchie46 - I have just written [raku Dan](https://github.com/p6steve/raku-Dan) as a way to scratch the "data analytics" itch in a new way -- my next step is to write Dan::Polars as a polars binding via (eg.) raku NativeCall. Can you point me to a good recipe for success? [email protected]