Settings

Theme

Ask HN: Compiled and Interepted language?

1 points by pkc 16 years ago · 6 comments · 1 min read


Is it possible for a language to be both compiled as well as interpreted.

* During development we can use interpreter to rapid application development * In production environment same code base gets compiled to machine code or bytecode for performance reasons

Is it possible? Or is it a stupid idea?

pmarin 16 years ago

Actually the different between compiled and interpreted language is very weak. For example, when you compile a C program the result is a code in a machine language and the machine language is "interpreted" by the Control Unit of the processor but if you are running the machine code in a emulator it is actually interpreted by the emulation layer.

ErrantX 16 years ago

Although it's not quite what you mean there is Cython - it's a Python extension to Distutils that lets you convert Python code to C & compile it.

We actually use this in the way you describe - using the interpreter as our test bed but compile it via Cython (for code protection and speed reasons) on deployment.

towndrunk 16 years ago

I'm not so sure skipping compilation is going to give you rapid development.

  • pkcOP 16 years ago

    During development certainly I can iterate more quickly with interpreted languages than with compiled ones. It improves development time considerably.

jpr 16 years ago

I think Common Lisp standard requires implementations to have both interpreter and compiler, but allows some freedom how to do it. Some implementations compile to byte code (I think CLISP does this), and some compile to native code on the fly (SBCL). Haskell and OCaml also have both interpreters and compilers available. So yes, it is quite possible.

njn 16 years ago

Yes it is possible. There are countless examples. ghc is one.

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection