It shows that Ruby still has life left in it yet. The language itself is wonderful, there's a great ecosystem of tooling but the performance was always lagging. Hopefully some of this makes it a choice for people once more over other more esoteric languages. My only concern here would be the time and sunk cost fallacy of someone like a Shopify working on a Ruby JIT. It reminds me of when Facebook was working on the H…
I am sooooooooooo sick of all this language churn. Ruby is a fantastic language, full stop.
irb > def method
irb > 'yes'
irb > def method
irb > 'it is not'
irb > end
irb > end
irb > method
=> :method
irb > method
=> "it is not"