Most voted "interpreter" questions
None
Learn more…10 questions
Sort by count of
-
12
votes3
answers187
viewsHow do alternative language implementations work, such as Python in the JVM?
I always see people talking about implementations of X languages in another Y language. Like for example: Jruby, a Ruby implementation in Java Jython, an implementation of Python in Java Ironpython,…
-
8
votes2
answers1159
viewsIs there a C interpreter?
Everyone knows that C is a compiled language. Some know that in theory any language can be interpreted, unless it has some specification that prevents it. Are there C interpreters? They’re good for…
-
8
votes1
answer635
viewsIs there a difference between a compiler and an interpreter?
What’s the big difference between a compiler and an interpreter? In languages like C, Java is used a compiler, for example in Javascript an interpreter is used, but I was confronted with the term…
-
4
votes1
answer1311
viewsHow to create a simple interpreter?
I always wanted to create a language (something simple) for myself but I have no idea how. The question is: How to create a simple interpreter ?
-
2
votes1
answer92
viewsAlgorithm for AST
I’m creating a programming language in C++. I’ve made a simple lexer, which works perfectly for now. out 5 + 7 * 3 My lexer turns it into: kw: out num: 5 op: + num: 7 op: * num: 3 nl Now I need to…
-
1
votes2
answers1138
viewsIs there an Interpreter for C?
I would like to test small chunks of C code in the same way I can with Python, opening the terminal and testing command by command, this would be possible with c?…
-
1
votes1
answer579
viewsProblems with the vscode interpreter
Well, the Code works, I changed the vscode interpreter that was in global python 3.7 from Ubuntu even to virtualenv python, the code works, but I do not understand why this error in Problems. I’m…
python visual-studio-code importing virtualenv interpreterasked 5 years, 4 months ago Raisler Voigt 73 -
0
votes0
answers986
viewsPhpstorm, php interpreter is not configured - wrong folder!
Guys I was doing some naughty codes on php and everything was going well, until I started to do integration html with php, I put the file html in the same folder as php, in the right folder of mine…
-
0
votes1
answer209
viewsHow to interpret binary content, . dat?
I need to interpret files .dat, for example. I suppose this is the content of it: ³Å¸ÎÔ|, which would be equivalent to "Davis" as a text. In Javascript, using XMLHttpRequest for a file . dat of…
-
0
votes1
answer3155
viewsHow to clear Windows Python interpreter screen?
I’m starting to study Python (version 3), doing several syntax tests using the interpreter for Windows. However, I would like to clear the commands I have already executed from the screen as the…