What's a useful programming language feature or concept that a lot of languages don't have?

cathodion

Dustin King

Posted on November 29, 2018

What's a useful programming language feature or concept that a lot of languages don't have?

One thing that comes to mind is Ruby's macro-style methods:

class BankAccount < Account
  attr_accessor :balance
  belongs_to :customer
end
Enter fullscreen mode Exit fullscreen mode

What's something your favorite language has that others don't? Or something from a language you tried out that one time and immediately missed it in other languages?

đź’– đź’Ş đź™… đźš©
cathodion
Dustin King

Posted on November 29, 2018

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related