Tagged Questions
The interpreted-language tag has no wiki summary.
26
votes
9answers
1k views
Do comments slow down an interpreted language?
I am asking this because I use Python, but it could apply to other interpreted languages as well (ruby, php, javascript).
Whenever I leave a comment in my code, is it slowing down the interpreter? My ...
18
votes
1answer
234 views
Why are Ruby method calls particularly slow (in comparison to other languages)?
I'm trying to read about Ruby performance, and came across this SO thread, where one of the answers mentions that "method calls, one of the most common operations in Ruby, are particularly slow."
...
16
votes
9answers
2k views
Why interpreted langs are mostly ducktyped while compiled have strong typing?
I just don't know that, is there any technical reason for that? Is it more difficult to implement a compiler for a language with weak typing? What is it?
13
votes
14answers
2k views
Why are so many web languages interpreted rather than compiled?
Why didn't languages such as C end up being using for web dev? Surely the speed increases from being compiled would be useful for heavy load sites?
10
votes
2answers
764 views
Is C# Interpreted or Compiled?
I thought that C# generated compiled code (by JIT)
But I have lately discovered that I can edit code while debugging mode in C# (VS 2008)
Does that means that C# is interpreted? or there is a trick?
...
9
votes
6answers
607 views
run interpret c++?
Is there a way i can run c++ code as interpreted instead of compiled? so i can edit code and write functions on the fly?
Related:
Have you used any of the C++ interpreters (not compilers)?
7
votes
3answers
101 views
How to run a haskell file in interpreted mode
I've been told you can interpret haskell files (which I assume means they will work like Ruby/Python/Perl). Can't find the command line option on ghc to do this, though. It always wants to compile my ...
7
votes
3answers
60 views
PHP throws error inside function even though the function is not executed on the page
If PHP is interpreted language(every line is executed as it is reached), how come it throws errors if the error occurs inside a function which is never executed?
Or may be I don't get what ...
7
votes
10answers
2k views
Why HTML/JavaScript/CSS are not compiled languages and will they ever be?
Why HTML/JavaScript/CSS are not becoming compiled languages (or maybe even merge into a single compiled language)? What if browsers were running "Browser Virtual Machine" and html/javascript/css ...
6
votes
3answers
195 views
Do compiled PHP scripts exist?
I am wondering if anyone has used or read about PHP scripts compiled as a .so extension for Apache... Thing is I think I remember reading about it somewhere but dont know if such a thing exists.
This ...
5
votes
3answers
194 views
How hard is it to write an interpreted language assuming you have an AST?
I already have a parser for a language I've been working on. Is making it interpreted difficult? I was thinking its simple. The parsing and syntax check is done. I just have a tree of objects. ...
5
votes
7answers
1k views
Is Ruby really an interpreted language if all of its implementations are compiled into bytecode?
In the chosen answer for this question about Blue Ruby, Chuck says:
All of the current Ruby
implementations are compiled to
bytecode. Contrary to SAP's claims, as
of Ruby 1.9, MRI itself ...
4
votes
5answers
157 views
Does it make sense to use Hungarian notation prefixes in interpreted languages? [closed]
First of all, I have taken a look at the following posts to avoid duplicate question.
Hungarian Notation
Why shouldn't I use "Hungarian Notation"?
Are variable prefixes (“Hungarian ...
4
votes
2answers
217 views
Is Python interpreted or compiled or both?
From my understanding :
Interpreted : A high level language run and executed by an Interpreter(a program which converts the high-level language to machine code and then executing) on the go; It ...
4
votes
7answers
539 views
Is Perl a compiled or an interpreted programming language?
Could not google out any definitive answer.
Explanations are very welcome.
4
votes
3answers
115 views
Looking for a new language that supports both interpreted and native compilation modes
I currently program in Perl, Python, C#, C, C++, Java, and a few other languages, and I'm looking for a new language to use as a primary when doing personal projects.
My current criteria are:
can ...
4
votes
5answers
415 views
Recursion overhead — how serious is it? [closed]
Possible Duplicate:
Is recursion ever faster than looping?
I was first trained to program seriously in C, about 15 years ago. My employer wanted highly optimized code for computationally ...
4
votes
4answers
161 views
How can be interpreted code even little efficient? (theoretical)
OK, first, I dont want any kind of flamewar here or anything like it. My bigger question is more theoretical, and will include few examples.
So, as I wrote, I cannot understand how can interpreted ...
4
votes
2answers
224 views
What does it mean for a language to be ‘interpreted’?
Do languages like e.g. Ruby (if running MRI, I mean not compiled to byte-code) run actually parsed everytime when an execution of, e.g., method or loop body is needed? I mean, to execute a loop, you ...
4
votes
2answers
110 views
When implementing an interpreter, is it a good or bad to piggyback off the host language's garbage collector?
Let's say you are implementing an interpreter for a GCed language in a language that is GCed.
It seems to me you'd get garbage collection for free as long as you are reasonably careful about your ...
4
votes
11answers
697 views
How is it possible to sell code written in an interpreted language?
It seems to me that if you are writing in an interpreted language that it must be difficult to sell software, because anyone who buys it can edit it/change it/resell it without much difficulty.
How ...
3
votes
2answers
68 views
What do “IS” “IL” and “IEXT” refer to in the RDF Semantics specification?
These terms are used in the "Definition of a simple interpretation" table on http://www.w3.org/TR/2004/REC-rdf-mt-20040210/#interp . I am a little unclear on their meaning.
At this point I think ...
2
votes
4answers
138 views
Is C# partially interpreted or really compiled?
There is a lot of contradicting information about this. While some say C# is compiled (as it is compiled into IL and then to native code when run), others say its interpreted as it needs .NET. EN Wiki ...
2
votes
3answers
70 views
Where is the Ruby interpreter located?
I'm using Ruby 1.8.7 on OS X. Where is the Ruby interpreter located? My goal is to learn more about Ruby, interpreted languages and interpreting/parsing.
2
votes
1answer
51 views
BCPL compiler/interpreter for a current OS and architechture?
Does anyone know of a working BCPL compiler, written for a current OS (I have Windows 7 and Ubuntu readily available) with an x64 architecture? I first heard about BCPL after Dennis Ritchie's recent ...
2
votes
3answers
187 views
Is Ruby a scripting language or an interpreted language?
I just noticed that in the wikipedia page of Ruby, this language is defined as interpreted language.
I understood that probably there's something missing in my background. I have always known the ...
2
votes
5answers
149 views
Why do interpreted/scripting languages rarely have multi-line comments?
Of the interpreted languages I know (Python, Perl, R, bash), multi-line comments seem to usually involve some misuse of another feature of the language (e.g. multiline strings).
Is there something ...
2
votes
3answers
263 views
storing multi-dimensional arrays in c
I am working on a simple lisp-style pre-processor language.
In the API i want users to be able to pass arrays of any dimension and size to the pre-processor which can be manipulated using the ...
2
votes
2answers
107 views
Language interpreted from source code vs. bytecode in Web
Assuming a program is written in 2 different languages:
In a language interpreted from source code (PHP for example)
In a language interpreted from bytecode (Java for example).
The two program do ...
2
votes
4answers
250 views
Fast interpreted language for memory constrained microcontroller
I'm looking for a fast interpreted language for a microcontroller.
The requirements are:
should be fast (not crucial but would be nice)
should be light on data memory (small overhead <8KB, ...
2
votes
2answers
110 views
Steps carried out in case of INTERPRETER and COMPILER
What exactly the difference between interpreted and compiled language.For example I want print the numbers from 1 to 100 .How exactly the sequence of operations takes place in case of interpreter and ...
2
votes
2answers
95 views
Run-time compilation: How is it possible that this isn't a performance hit?
I've heard that some types of runtime compilation aren't a performance hit. The official Python documentation asserts that running a .pyc file is no faster than .py. (I can't find the link right now.) ...
2
votes
3answers
104 views
Understanding run time code interpretation and execution
I'm creating a game in XNA and was thinking of creating my own scripting language (extremely simple mind you). I know there's better ways to go about this (and that I'm reinventing the wheel), but I ...
2
votes
3answers
533 views
Compiling Ruby and Python interpreters with Clang?
I'm just curious; are there any benchmarks about how compiling interpreters for dynamic languages with Clang affects the performance of these languages? Do those interpreters even compile?
2
votes
14answers
1k views
Why Interpreted Languages Are Slow?
I was reading about the pros and cons of interpreted languages, and one of the most common cons is the slowness, but why is the interpreted languages programs slow?
2
votes
5answers
170 views
is the code for interpreted languages re-interpreted every time the line is reached?
suppose that no bytecode is generated for a program, like in Ruby, Perl, or PHP, in this case, is line 1 below re-interpreted every time the execution reach line 1 again?
while ($indexArrayMoviesData ...
2
votes
2answers
132 views
How is setTimeout implemented in the javascript interpreters or timers in general?
How is a function called after a time has passed implemented in javascript or any other interpreted language?
In other words, is there a loop behind in the javascript interpreter that checks all the ...
1
vote
1answer
57 views
Why in interpreted languages the # usually introduces a comment?
Why in interpreted languages the # normally introduces a comment? This question was asked in an exam on Shell Programming but I don't find any hint on why it's the #.
Any ideas?
1
vote
4answers
64 views
ncurses-like bindings in interpreted languages
Are there any bindings for ncurses or a similar menuing framework in interpreted languages that make the process of creating console menus and interacting with options absurdly simple?
I want to ...
1
vote
2answers
69 views
Interpretted Scripts: Implicit vs Explicit Execution
In this superuser question I was advised that it is better to execute scripts written in an interpretted language (php, python, etc) by explicitly executing the interpretter and providing the script ...
1
vote
4answers
195 views
Runtime definition
What is the runtime? And I don't mean "at run time" = as the program/script is running. I mean
The <your-interpreted-language-here> runtime
1
vote
7answers
1k views
Pros And Cons Of Interpreted Languages
I'm now learning Perl, but what are the pros and the cons of the interpreted languages?, because i started to learn Perl because my friend started, then it's only more one language to my experience. ...
1
vote
2answers
658 views
Simple Interpreted Language Design & Implementation
I need some resources for implementing a simple virtual machine and interpreted language. Something that is pratical is most useful. I have read the Virtual Machine Implementation book and found ...
0
votes
1answer
56 views
Python - Interactive mode vs. normal invocation of the interpreter
Is there a difference between the two modes in terms of resources, especially memory? I'm referring to Python in the title but if there is a common explanation to many interpreted languages (Octave, ...
0
votes
0answers
32 views
Is there any way to securely license software written in interpreted languages?
I'm speaking typically about PHP, though the same applies (I assume) to any interpreted language.
Is there any way to license it securely? Since anything written in the language isn't compiled (it's ...
0
votes
2answers
88 views
php as interpreter language or complied [closed]
Possible Duplicate:
Is PHP compiled or interpreted?
I am little confused with the words used with PHP. I know PHP is a scripting language. Some times I read it is interpreted or some time ...
0
votes
3answers
79 views
How would you create an expression parser in c#?
I am just curious. Like in interpreted languages or even statement calculators how do people convert the strings given by input or files to actual expressions? e.g "Enter Calculation: " and you write ...
0
votes
1answer
68 views
Run time optimisation in Javascript
Do the main Javascript interpreters have any built in optimisation at all? I'm thinking of very simple cases like
while(i < array.length) { ... }
0
votes
1answer
47 views
What interpreted language can i leverage for debugging?
I spoke about developing a programming language. Instead of making it compiled i am considering making it interpreted. So what i like to do is parse the syntax myself, build the AST and output source ...
0
votes
6answers
425 views
Performance Comparison of Shell Scripts vs high level interpreted langs (C#/Java/etc.)
First - This is not meant to be a 'which is better, ignorant nonionic war thread'... But rather, I generally need help in making an architecture decision / argument to put forward to my boss.
...