Tagged Questions
A REPL (Read-Eval-Print Loop) is the most common model for an interactive interpreter - it Reads input, Evaluates it, Prints it, and Loops back to the beginning.
32
votes
4answers
6k views
How to save a Python interactive session?
I find myself frequently using Python's interpreter to work with databases, files, etc -- basically a lot of manual formatting of semi-structured data. I don't properly save and clean up the useful ...
25
votes
3answers
805 views
One REPL to bind them all?
I'd like to know if there is a REPL which is not language-specific. I spend a lot of time dipping in and out of REPLs (mainly for Clojure, Scala and Haskell), and the bundled ones all frustrate me to ...
21
votes
6answers
519 views
Saving my running toplevel for later
When working in the ocaml or ghci toplevels I often build up a significant "context" for want of a better word, values bound, functions, modules loaded, and so on. Is there a way to save all of that ...
20
votes
4answers
3k views
Java REPL shell
I'm looking for a REPL shell that I can use to test out snippets of Java code. Either a desktop app, or a web app (like the Groovy web console). Ideally, commonly used Java packages like:
java.io.*
...
19
votes
6answers
3k views
Have you used any of the C++ interpreters (not compilers)?
I am curious if anyone have used UnderC, Cint, and Ch (or any other C++ interpreter) and could share their experience.
Thanks everyone for your valuable input.
/Allan
17
votes
11answers
4k views
Online Interactive Consoles
Where can I find an online interactive console for programming language or api?
Ruby
Python
Groovy
PHP?
Perl?
Scheme?
Java?
C?
16
votes
6answers
2k views
Clojure Development: IDE or REPL?
I've been using Clojure for a little while and want to create some projects that are bigger and more complicated than toys. I've been using Java for the past few years and have become accustomed to ...
16
votes
5answers
3k views
Anders Hejlsberg's C# 4.0 REPL
During the last 10 minutes of Ander's talk The Future of C# he demonstrates a really cool C# Read-Eval-Print loop which would be a tremendous help in learning the language.
Several .NET4 related ...
16
votes
9answers
4k views
Is there an interpreter for C?
I was wondering if there is something like an interpreter for C. That is, in a Linux terminal I can type in "python" and then code in that interpreter. (I'm not sure interpreter the right word). ...
14
votes
1answer
350 views
Creating a Haskell REPL within a Haskell application
I'm trying to embed a Haskell REPL within one of my Haskell applications. The idea would be that only a subset of the Haskell libraries would be loaded by default, plus my own set of functions, and ...
14
votes
4answers
1k views
Is there a colored REPL for Clojure?
I'd like to get a colored REPL for clojure code, similar to what you can do with IRB for Ruby.
Are there any libraries or settings for user.clj that provide automatic coloring of the REPL?
Example ...
12
votes
12answers
2k views
Is there something like python's interactive REPL mode, but for Java?
Is there something like python's interactive REPL mode, but for Java?
So that I can, for example, type InetAddress.getAllByName( localHostName ) in a window, and immediately get results, without all ...
11
votes
3answers
731 views
Attach a clojure / scala repl to a running JVM
I have a java web application running under tomcat in a Sun java 6 JVM. Is there a way to attach a scala or clojure REPL to the running JVM ?
Once the webapp is up and running, the context in which ...
11
votes
1answer
214 views
Previous expression in clojure repl
In the python repl, getting the result of the previously input expression is easy:
>>> 1+2
3
>>> _
3
>>>
Is there a way to do this in the clojure repl?
10
votes
1answer
602 views
7.toBinayString does not work in scala REPL, but with val k=7 it works
scala> val s = 7.toBinayString
<console>:7: error: value toBinayString is not a member of Int
val s = 7.toBinayString
^
scala> val k = 7
k: Int = 7
scala> ...
10
votes
1answer
244 views
How do I access scala documentation from the repl?
First of all for the built in docs, and also for my own code.
Specifically, I want to get information similar to how in python you can call help() on a method or object to get information on just ...
10
votes
2answers
210 views
Is there an equivalent to the perl debugger 'x' in pdl2 (or Devel::REPL)?
I am using pdl2 (the PDL shell) also as a my default Perl interactive shell (it loads all the nice plugins for Devel::REPL). But I am missing the x dumper-printing alias. p is nice for piddles but it ...
10
votes
1answer
222 views
How can I stop a running operation in the SLIME REPL?
Is there a way to stop a running operation in the SLIME REPL?
The Clojure SLIME folks apparently have some way to do this, so how about in ordinary Common Lisp?
Thanks /Erik
9
votes
2answers
131 views
How to stop evaluation of a large repl result causing slime with swank clojure to slow down?
Whenever I evaluate a large value that prints a large datastructure into the repl, slime becomes very slow from then on. Typing anything subsequently into the repl shows a delay in values appearing in ...
9
votes
1answer
132 views
What really happens behind the scala runtime/repl when running a .scala program?
When you run from the command line something like
> scala hello.scala
What really happens? Is there a hello.class generated, executed, and then discarded? Or scala behaves somehow like an ...
9
votes
5answers
491 views
List of web-based interpreters of various programming languages
Let's say you're away from your computer and all you've got is a web browser. You'd still like to run a piece of code (e.g. to check an answer on SO). What are your options?
Let's create a list of ...
9
votes
4answers
732 views
Hello world in Prolog
I'm tearing my hair out trying to find how to just write a Hello World program in Prolog. I just want to create a program that runs like so:
> ./hw
Hello, world!
>
The problem is that every ...
9
votes
3answers
434 views
Clojure namespace management - Is there a way to save and restore the state of clojure repl namespaces, imports etc.?
Clojure has a large number functions/macros for working with namespaces and java package imports. To my (limited) understanding the set up of namespaces can be considered state in a clojure process ...
9
votes
4answers
2k views
Clojure emacs slime + swank directory question
I'm using emacs with clojure-swank and slime and trying to set my development environment. And I ran into a problem. When I start a repl I'm stuck in an unknown directory preventing me to load my ...
8
votes
3answers
504 views
can i clean the repl?
if i played with a lot of code in a repl console, how can i clear it ? i would like a fresh one without restarting it. can that be done ?
8
votes
2answers
912 views
How can I use the Clojure REPL together with Qt Jambi?
I have not found a solution to use the Clojure REPL with Qt on the web.
Basically the problem is that the REPL hangs as soon as you call QApplication/exec in order to get the UI to display. You cannot ...
8
votes
3answers
436 views
Is there any way to get a REPL in pydev?
I would like to be able to drop to the python REPL from the debugger -- if this is not possible is there an easier way to evaluate python expressions in the context of the current breakpoint other ...
7
votes
1answer
161 views
How to make sbt `console` use -Yrepl-sync?
New in Scala 2.9.1 is the -Yrepl-sync option, which prevents each REPL line from being run in a new thread:
scala -Yrepl-sync
When I run console from sbt, how do I have it pass this in?
7
votes
11answers
2k views
C# Console/CLI Interpreter?
I wonder if there is something like a standalone Version of Visual Studios "Immediate Window"? Sometimes I just want to test some simple stuff, like "DateTime.Parse("blah")" to see if that works. But ...
6
votes
1answer
148 views
Is there an API for running Scala REPL programmatically?
Based on a thread and the Scala interpreter sources it looks like it would not be that hard to get the equivalent of
def runLine(line: String): String
but has someone written this already?
6
votes
4answers
114 views
How can I permanently store commands in the Python REPL/prompt?
Is there a way to store commands in Python?
For example, to store a bash command I can put:
# in .bash_profile
alias myproject="cd /path/to/my/project"
$ project
Is there a way to store a ...
6
votes
2answers
218 views
Companion object cannot access private variable on the class
A rather weird behavior coming from the Scala REPL.
Although the following compiles without a problem:
class CompanionObjectTest {
private val x = 3
}
object CompanionObjectTest {
def ...
6
votes
1answer
228 views
Scala REPL ~20secs to startup — is this normal?
I'm using Scala 2.9.0.final on Ubuntu 11.04. Starting scala from the command line takes about 20 seconds before a prompt appears.
I realize I should expect some delay because it has to lead compiler ...
6
votes
5answers
167 views
How can you dump contents of Clojure REPL to a file?
So I have been working on a Clojure tutorial and it's pretty fun so far. Unfortunately, every time I close my REPL out, I lose all of the defn and def that I created in the previous session.
So, to ...
6
votes
2answers
220 views
REPL for interpreter using Flex/Bison
I've written an interpreter for a C-like language, using Flex and Bison for the scanner/parser. It's working fine when executing full program files.
Now I'm trying implement a REPL in the ...
6
votes
1answer
231 views
Can I stop the execution of an infinite loop in Scala REPL?
Can I stop the execution of an infinite loop in Scala REPL?
Type this and try to stop it without quitting the REPL.
while(true){}
I thought something like Ctrl-C would work.
6
votes
1answer
980 views
Launch Scala REPL programatically?
I would like to launch a Scala Swing application from the command line, then after the application is started, drop into the Scala REPL to use as a control interface.
Ideally I would also like to ...
6
votes
3answers
287 views
What program can help a REPL shell remember and search history?
I'm playing with Paul Graham's arc, and it's getting really annoying that the up arrow inserts ^[[A instead of the previous command, and ^R doesn't work as in shell. I vaguely remember there being a ...
5
votes
2answers
83 views
Scala REPL in Emacs
I like to do my Scala development in Emacs, and from time to time, I use the REPL to test out snippets of code or to load and test some code I've just written. I'm using Scala 2.9.1, and I've noticed ...
5
votes
2answers
47 views
Quickest way to preview a PIL image
I'm now working with PIL images in Python. What's the quickest way to preview a PIL image in the Python shell? Saving to a file and then opening it in my OS is pretty cumbersome.
5
votes
1answer
161 views
Handling UserInterrupt exception in Haskell
I'm implementing a REPL for a Scheme interpreter in Haskell and I'd like to handle some async events like UserInterrupt, StackOverflow, HeapOverflow, etc... Basically, I'd like to stop the current ...
5
votes
1answer
211 views
Racket REPL over TCP
I've built a rather complex application with Racket (formerly PLT Scheme) and would like to add a REPL for debugging purposes. I've tried to make it accessible over a TCP stream:
(define repl-server
...
5
votes
3answers
240 views
How to add a Clojure REPL to an existing .NET application?
How do I add an interactive Clojure REPL to an existing .NET application so I can use it as a live debugging aid? (Ideally this would be a C# REPL, but those are someway off (maybe .NET 5.0?) the ...
5
votes
3answers
263 views
Emacs Lisp: How to, an interactive buffer with REPL?
Imagine the dunnet.el game, the eliza doctor or the IELM mode...; This is, evaluating answers and prompting new questions on the main buffer, then making some actions according to their elisp rules.
...
5
votes
1answer
259 views
Getting IllegalStateException when reloading a namespace in the REPL
My namespace declaration looks like this:
(ns test.foo
(:use
[clj-http.client :only (get) :as client]
[net.cgrand.enlive-html :only (select) :as html]))
It works fine in the REPL, the ...
5
votes
3answers
524 views
Is it possible to build a interactive C shell?
I'm just wondering if this is possible using either (Python, Java or C)? I'm looking for something like IPython for Python.
5
votes
2answers
1k views
Is there an easy way to get the Scala REPL to reload a class or package?
I almost always have a Scala REPL session or two open, which makes it very easy to give Java or Scala classes a quick test. But if I change a class and recompile it, the REPL continues with the old ...
5
votes
4answers
422 views
C# REPL tools; quick console-like compiling tool
Often times, I start a new instance of Visual Studio, just to create a console application that has some output and/or input. It's a temporary sandbox I use to test a method or something else and ...
5
votes
6answers
2k views
How to implement a python REPL that nicely handles asynchronous output?
I have a Python-based app that can accept a few commands in a simple read-eval-print-loop. I'm using raw_input('> ') to get the input. On Unix-based systems, I also import readline to make things ...
5
votes
5answers
675 views
How to save all functions I entered in LispBox/Slime?
Situation: I entered several functions while working with REPL in Emacs.
Problem: There is junk like "; Evaluation aborted" when I'm simply saving buffer.
What I want: clear descriptions of all the ...