TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Compiled and Interepted language?

1 pointsby pkcover 15 years ago
Is it possible for a language to be both compiled as well as interpreted.<p>* 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<p>Is it possible? Or is it a stupid idea?

5 comments

pmarinover 15 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.
ErrantXover 15 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 &#38; compile it.<p>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.
towndrunkover 15 years ago
I'm not so sure skipping compilation is going to give you rapid development.
评论 #950286 未加载
jprover 15 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.
njnover 15 years ago
Yes it is possible. There are countless examples. ghc is one.