Nim v2: what would you change?

2023-01-12 Thread xigoi
There has been a lot of discussion about it and there don't seem to be many arguments for disabling it other than “I don't have good feelings about it” or “I really want to have `foo_bar` and `fooBar` refer to different things”.

The WASM Revolution

2023-01-12 Thread alexeypetrushin
I think big companies intentionally break / limit / delay features for web, to avoid competition with their app markets. In theory WASM could be great... but it seems that so far it's only in theory...

Nim v2: what would you change?

2023-01-12 Thread v3ss3n
Please disable default case and style insensitivity. Don't need to totally get rid of it people still love it can enable it back

What would be the bast way to get parsing and validation of parameters (option:value)

2023-01-12 Thread jackhftang
> I am curious how would you implement this. Without using 100 line long case > statements, for each option. I would say the keyword is **parser combinator** (PC). You can write customized parser for each option and then combine them with combinators. And you can achieve all 3 bonus features to