Tagged Questions

4
votes
5answers
926 views

Interpreted languages - leveraging the compiled language behind the interpreter

If there are any language designers out there (or people simply in the know), I'm curious about the methodology behind creating standard libraries for interpreted languages. Specifically, what seems ...
1
vote
1answer
128 views

Compiled expressions run much slower than interpreted versions

I have a rules engine, which supports two modes of operations: Compilation into a C# program and linked into the engine Parsing into a reverse-polish stack-based instructions and interpreted The ...
0
votes
6answers
2k views

Speed Comparisons - Procedural vs. OO in interpreted languages

In interpreted programming languages, such as PHP and JavaScript, what are the repercussions of going with an Object Oriented approach over a Procedural approach? Specifically what I am looking for ...