Poll: Which programming language do you plan on learning next?
91–100 of 114 posts
Re: Poll: Which programming language do you plan on learning next?
#92Earlier quoted context omitted.
We're doing real time control for vehicles, which has to handle, among other things, valve timing, fuel flow, the transmission, suspension adjustments, braking. We can't afford to have the system break, and Erlang is built for mission critical systems, giving us quality primitives for handling concurrency and software breakage. But in Erlang records and math are kinda broken, and we needed both. Hence, LFE.
Thanks! Is there a link to the project?
It's awesome. But, the shell is a little neutered, i.e. it breaks on (lambda (x) x)...hopefully that'll be fixed soon.
Re: Poll: Which programming language do you plan on learning next?
#93Re: Poll: Which programming language do you plan on learning next?
#94Lua An elegant, minimalistic and fast scripting language. It's like Javascript without all the cruft.
i second that. Lua is very much fun to work with. It has actually full closures, upvars, and functions are first class citizen. The only thing is lacking a little bit of OO design. It is duable, but OO on lua always feels a little bit hacky.
It was inspired by Lua (among others).
Re: Poll: Which programming language do you plan on learning next?
#95Earlier quoted context omitted.
My thought process was, if Python and/or Ruby is on the to learn list, they would look at both, but go with one of them.
Unless of course you already know Python and want to learn Ruby next (or the other way around).
Re: Poll: Which programming language do you plan on learning next?
#96ducks ;)
Re: Poll: Which programming language do you plan on learning next?
#97Smalltalk
I'm currently reading a book about Smalltalk - does that count?
Re: Poll: Which programming language do you plan on learning next?
#98Earlier quoted context omitted.
i second that. Lua is very much fun to work with. It has actually full closures, upvars, and functions are first class citizen. The only thing is lacking a little bit of OO design. It is duable, but OO on lua always feels a little bit hacky.
If you like Lua, but want OO, try Io: http://iolanguage.com/ It was inspired by Lua (among others).
Re: Poll: Which programming language do you plan on learning next?
#99Re: Poll: Which programming language do you plan on learning next?
#100Objective C
object.message(arg1, arg2) vs. [object messageOne:arg1 Two:arg2]
But now I'm really enjoying it and working at it full time.