vote up 0 vote down star

Hi.

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.

flag
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 at 13:42
Because there are no good answers that really fit my requirements, I removed the native code compilation requirement. – user220838 Nov 29 at 13:48
1  
Holy moving target, Batman! So what was missing from Lua? – Carl Smotricz Nov 29 at 13:57
It's ugly syntax. – user220838 Nov 29 at 14:07

7 Answers

vote up 3 vote down

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|flag
D is a good idea, I'll check it out. – user220838 Nov 29 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 at 13:49
vote up 2 vote down

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|flag
+1 for Go, since we don't know what he wants to do. – e-satis Nov 29 at 13:42
vote up 2 vote down

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|flag
1  
I'm looking for something easier than C or C++. – user220838 Nov 29 at 13:20
WHat's the definition of easier? C--? – o.k.w Nov 29 at 13:23
1  
What do you mean by "easier"? – Jason Nov 29 at 13:25
Please see my edit. – user220838 Nov 29 at 13:28
C and C++ don't support Garbage Collector. – user220838 Nov 29 at 13:44
show 1 more comment
vote up 1 vote down

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|flag
Please see my edit. – user220838 Nov 29 at 13:33
vote up 1 vote down

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|flag
Not even funny. – user220838 Nov 29 at 14:07
So why do I smile ? – e-satis Nov 29 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 at 16:35
vote up 0 vote down

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

link|flag
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 at 13:32
vote up 0 vote down

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|flag
Please see my edit. – user220838 Nov 29 at 13:34
Similar Q and some answers: stackoverflow.com/questions/72931/… – The MYYN Nov 29 at 13:39

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.