Thoughts
I'm over Ruby. The assembly ruby gets to me.
=> https://news.ycombinator.com/item?id=38489142
It's like, their nesting syntax is ugly as hell because they don't have brackets, so they just configure lint rules to disallow functions to have more than 5 lines, so that the logic ends up spread out between 100 functions.
(Reading code that looks like
```ruby
def foo
config = Service.get_config # okay
config ? handle_config : handle_no_config # what
end
def handle_config
...
end
def handle_no_config
...
end
```
Why not
```zig
if (Service.get_config()) |config| {
...
} else {
...
}
```