up vote 0 down vote favorite
share [g+] share [fb]

I'm looking for a programming language. It should be an easy language to learn, and should have a Garbage Collector. It should be a basic language with features like basic types (integer, boolean), arrays and etc, and I should write the framework.

It is for a game editor I want to write. The editor's designer will write the code of the UI in this programming language. The framework will be a 2D graphics and audio framework, and in the future it'll be 3D too.

I thought about the new Go language, but it doesn't have much support and theres no binding to OpenGL and etc.

Any ideas?

Thanks.

link|improve this question
why the requirement for compiling to native code? Judging by what you are building I don't see why that is a requirement. You're leaving out many good choices, especially if "easy" is one of your criteria. Tcl, Python, Ruby would all make your task easier. Are you concerned about deployment? Some scripting languages (for example. Tcl) make it trivial to wrap up files into a single executable). – Bryan Oakley Nov 29 '09 at 13:42
Because there are no good answers that really fit my requirements, I removed the native code compilation requirement. – user220838 Nov 29 '09 at 13:48
1  
Holy moving target, Batman! So what was missing from Lua? – Carl Smotricz Nov 29 '09 at 13:57
It's ugly syntax. – user220838 Nov 29 '09 at 14:07
feedback

7 Answers

The obvious two are C or C++. However, D is closer to Java and C# given that it has a garbage collector in the standard, as well as an alternative standard library that is fairly closer to Java than the C++ standard library. The downside with D is that they tools are not as mature as C++ or C and the community isn't as large.

The obvious solution though it to look down the list of compiled languages on wikipedia and see which you like the look of.

link|improve this answer
D is a good idea, I'll check it out. – user220838 Nov 29 '09 at 13:35
Nice catch with D. I first thought it would be the next gen low level language. How ever, Go will probably kill it. – e-satis Nov 29 '09 at 13:49
feedback

If you don't want to manage memory all by yourself like C or C++, you can try the new Go language. It compiles to native code (albeit for Linux and MacOSX only for now) and comes with a basic framework that can be easily replaced with your own framework.

It has a very active user base, so IMO it is possible to mature quickly.

link|improve this answer
+1 for Go, since we don't know what he wants to do. – e-satis Nov 29 '09 at 13:42
feedback

Well, that's a fairly broad question and without more specific requirements it is difficult to give a focused answer, but it sounds like C (or C++) would fit the bill for you. The languages you described all owe their syntax to C. C will compile to native code. C is basic language in that there is not much to learn beyond the basic syntax and it has all the basic primitives that you require.

Now that you've added the requirement of a garbage collected language, I suppose that you could try Go, but that language is not mature and there's always a risk there.

link|improve this answer
1  
I'm looking for something easier than C or C++. – user220838 Nov 29 '09 at 13:20
WHat's the definition of easier? C--? – o.k.w Nov 29 '09 at 13:23
1  
What do you mean by "easier"? – Jason Nov 29 '09 at 13:25
Please see my edit. – user220838 Nov 29 '09 at 13:28
C and C++ don't support Garbage Collector. – user220838 Nov 29 '09 at 13:44
show 1 more comment
feedback

You may want to look at Lua.

Lua is a relatively tiny language which manages to be capable and universal with just a few concepts. The BNF specification for the whole language fits easily on one page. It has numbers, booleans, tables and functions, and surprisingly that's all the datatypes it needs. It can even work in an object-oriented fashion.

There's a compiler, Luac, that compiles Lua to bytecode.

Lua is already being used as a UI programming language for games. Addons for World of Warcraft and a few other games are programmed in Lua. I believe Lua is a very good fit for this kind of task.

You want OpenGL? OK... http://luagl.wikidot.com/ is an OpenGL library for Lua.

link|improve this answer
Please see my edit. – user220838 Nov 29 '09 at 13:33
feedback

Since we don't know what you want to do, I don't know what are the chances we success. Therefor, what about a language where you have to set the probability of your statement to fail :

Meet GOTO++.

Don't say "thanks you", it's on me.

link|improve this answer
Not even funny. – user220838 Nov 29 '09 at 14:07
So why do I smile ? – e-satis Nov 29 '09 at 16:32
Wow, even funnier with your question edited. Why not directly make a MMORPG ? metamagick.net/images/mmorpg.gif – e-satis Nov 29 '09 at 16:35
feedback

C++ is Great, it's not scripting lang, so you don't even need a scripting host.

link|improve this answer
1  
He wants an easy language. I wouldn't recommend C++ to anyone not willing to invest a lot of blood, sweat and tears. – Carl Smotricz Nov 29 '09 at 13:32
feedback

Enjoy a challenge?

Try go.

Here's a tech talk by rob pike, and here is a discussion group: http://groups.google.com/group/golang-nuts/topics .

link|improve this answer
Please see my edit. – user220838 Nov 29 '09 at 13:34
Similar Q and some answers: stackoverflow.com/questions/72931/… – miku Nov 29 '09 at 13:39
feedback

Your Answer

 
or
required, but never shown