John Olinda I really like the Io Language website's About page i.imgur.com/hdBOvk...
Nkrs Io is a really interesting language. It is very easy to master and if you want a weekend project, it is also very easy to make a simple Io-like language interpreter (I'm actually borrowing some of its ideas for my language project). Sadly, it isn't very popular - the main implementation is buggy and not very fast (comparing to something like Lua or Ruby or Python - and for a very good reason: Io is a simple AST walker while these have optimizations). Still, it's a very interesting project. There exists a language called Ioke that is very similar to Io, but runs on the JVM - ioke.org
7y, 15w 5 replies
Martijn Why would I want anything running on JVM?
7y, 15w 4 replies
Login or register your account to reply
Nkrs Java (the language) gets a lot of heat for being overly complex, there's no doubt about it. However, Java (the virtual machine) has some incredible optimization technologies built into it, and with newer languages that run on it, it is possible to take advantage of those optimizations. I'm getting prepared to work on a small report generating app that is written in Java to use JRuby and from my tests it is quite an improvement over MRI: real threads, support for Unicode, access to Java libraries.
7y, 15w 3 replies
Martijn Almost every Java/JVM application I have ever had to run has been an unpleasant experience for my RAM, CPU, and me. Maybe things have gotten better, I don't know, but I would love if all my software would just run outside of a virtual machine and on my actual machine.
7y, 15w 2 replies