angelcaru

Results 11 comments of angelcaru

This is honestly how it **should** work given there is no way to explicitly break out of a `case` statement (as this is implied). If you wanted to print everything,...

Yeah dude, I know how `switch` works. I also know how much it sucks

I would if #162 wasn't _literally the fix_

I like `...` for positional args better. Not sure how to do kwargs in that case though (`......` just looks stupid)

Then it's even better, because there's a nice symmetry between variadic arguments and passing variable amounts of args into a function. Like: ```radon fun call(f, ...args, ***kwargs) -> f(...args, ***kwargs)...

The 3 `***` is for symmetry with the 3 `...`. Also I don't think unpacking into lists and dicts is as important as into function calls because you can just...