``` match { optional = false ...
# dsl
t
Copy code
match {
            optional = false
        }

        with {
            "hello, world"
        }
d
No gain from this one... the match can have multiple statements using its receiver, but with only has one.
t
hmmm you're right. im not sure the best way to implement something like this...if i only want 1 argument would would be the "proper" way to do something like this?
d
See my previous comments