Can anyone point to programming language which has python-like syntax, but from the very beginning was designed to generate native code? I'm aware of Boo only, but it uses .net, not native code generation. Well, if nothing else than python-like languages which generate .net/java bytecode are fine too.
|
|
|
Cython might do -- the C code it generates is for Python extensions, but the whole thing can be packaged up and you'll be running native code throughout (after the 'import';-). |
|||
|
|
|
I must admit that I don't quite understand your question, for two reasons:
Anyway, Nimrod is a programming language which has an implementation which supports native code generation (or more precisely an implementation which supports C source code generation) and whose syntax is a hybrid between Wirthian style (by the looks of it the most important influences are Oberon and Delphi) and Python. However, the fact that it has Pythonic syntax isn't going to help you at all if you don't like European style language design or Wirthian style OOP. |
|||||||||||
|
|
shedskin compiles Python to C++ From shedskin project page
|
|||
|
|
|
Check out Cobra It is strongly influenced by Python, C#, Eiffel, Objective-C and other programming languages. It supports both static and dynamic typing. It has first class support for unit tests and contracts. Cobra provides both rapid development and performance in the same language. |
|||
|
|
|
||||
|
|
|
PyPy is a project to re-implement Python in Python. One of it's goals is to allow the use of multiple back-ends, including C. So you can take a pure Python program, convert it to C and compile it to native code. It is still a work in progress, so probably not suitable for production code. |
|||
|
|
|
Genie which is part of the gnome project: http://live.gnome.org/Genie I think it's exactly what you're looking for. |
|||
|
|
|
You can also investigate IronPython - a python inplementation on the .NET framework |
|||
|
|
If you are happy with something that compiles down to Java bytecode you could have a look at Jython. Quoting from their FAQ:
I've not actually used it yet but am considering it on some projects where I have to integrate with existing an Java codebase. HTH |
|||||||||||
|
|
You can find all of the previously mentioned languages, plus some more, here: http://wiki.python.org/moin/PythonImplementations |
|||
|
|