0

Apart from C, C++, Delphi, VB, can you put an example of a relatively "modern" COMPILED* programming language* supporting things like OO, collections, GUI libraries? Please do not mention experimental or academic only languages, I'm looking for something used in the real world, for PCs 80x86, and I don't mind about the OS.

Thanks!

*UPDATED: Compiled to native code.

*DISCLAIMER:

  • For language understand language implementation.
  • For compiled to native code understand not interpreted.
Mister Smith
  • 27,417
  • 21
  • 110
  • 193

3 Answers3

5

Haskell.

Source: http://www.realworldhaskell.org/

red
  • 3,163
  • 1
  • 17
  • 16
2

Wikipedia has a lot: http://en.wikipedia.org/wiki/Comparison_of_programming_languages

user229044
  • 232,980
  • 40
  • 330
  • 338
Polity
  • 14,734
  • 2
  • 40
  • 40
2

Cython. Compiles to native code, is used in high performance computing, both academic and commercial, and is used to implement LXML. GUI libraries include all those available for Python.

Also, Objective-C. That's now one of the most popular programming languages.

Fred Foo
  • 355,277
  • 75
  • 744
  • 836