Hacker News new | ask | show | jobs
by RivieraKid 4236 days ago
The point was that object.method() is sometimes more readable. For example I find web_socket_manager.reconnect_if_needed() more readable than reconnect_if_needed(web_socket_manager).
1 comments

That's because you are used to thinking in terms of objects, whereas in Julia the focus is on data and operations on data (the two are often conflated but they aren't the same).
I think in both depending on the situation.