29.08.2009, 18:47
For a first language, I suggest something simple, like vb(vb6 or .NET), or Python.
Python is a great language for beginners, and professionals. It has tons of libraries, very clear syntax, and easy to understand.
For example, Hello world is 1 - 2 lines! (Depending on the OS. You need the shebang on *nix)
but for Python 3, it would be :
Python is a great language for beginners, and professionals. It has tons of libraries, very clear syntax, and easy to understand.
For example, Hello world is 1 - 2 lines! (Depending on the OS. You need the shebang on *nix)
Код:
print "Hello world!"
Код:
print("Hello World!")