Hacker News new | ask | show | jobs
by nicoburns 2541 days ago
But not nearly as nice as:

    match x {
        0 => 'zero',
        x if x > 0 => 'positive',
        x if x < 0 => 'negative',
    }
1 comments

I actually made a library for that!

It's published on npm and everything. It's small, a bit unpolished, maybe needs more docs, but it works pretty damn well if you ask me!

https://gitlab.com/svartkonst/match