Hacker News new | ask | show | jobs
by charlesju 6205 days ago
What are some other benefits of C or Java over something like Ruby and Python?
1 comments

The level of abstraction matches most hardware.

Not all code written in C is performance-critical. But sometimes it's still the best choice if your code is directly talking to hardware.

In that case wouldn't you write some components in C and glue it all together with something like ruby?
Sure, that sounds reasonable. But you've still chosen C to talk to the hardware.
If you're using ruby or python you're ultimately using C anyway, right ;)