In the Python community, the term pythonic refers to idiomatic Python[1]. Is there an equivalent term in the Ruby community for idiomatic Ruby[2]?
[1] For example, using enumerate(l)
instead of range(len(l))
is pythonic.
[2] For example, using .each
instead of for
is idiomatic Ruby.