A Read-Eval-Print Loop (REPL) is the most common model for an interactive interpreter - it Reads input, Evaluates it, Prints it, and Loops back to the beginning.

learn more… | top users | synonyms (1)

0
votes
0answers
24 views

Obj-C communication with REPL process

I'm trying to make an IDE for Python using OSX/Cocoa. I'd like to set it up so that my IDE has multiple views that all talk to a persistent Python REPL running in the background. What are some good ...
5
votes
2answers
41 views

Issue an HTTP GET from REPL in Racket

I feel like I'm missing something, but after perusing the docs for net/url and poking around in general, I was unable to figure out a way to issue a GET request from the interactive prompt. Basically, ...
5
votes
1answer
61 views

How to extract Clojure REPL history

I have written some code within the plain console REPL of Clojure (lein repl). Now I would like to extract the history in order to get the code that I have written in there. Can I do this somehow?
0
votes
0answers
14 views

Change the output color of the coffeescript REPL (no yellow)

The coffee-script REPL by default prints its outputs in yellow, which is hardly readable when your background is white. Unfortunately, I couldn't find a way to configure it, but I don't want to change ...
0
votes
2answers
22 views

Save and restore parser state manually

I've setup a flex/bison system that can run and parse through yyparse and is able to be used inside a repl-type system. When a user enters a certain state (say: defining a method), and an systax error ...
0
votes
1answer
35 views

How to start the Rebol REPL in a context besides the System context?

If you run a script in Rebol and say something like print {Hello}, you end up calling the system version of PRINT >> bind? 'print == make object! [ system: make object! [ product: ...
2
votes
0answers
62 views
+50

Counterclockwise HTTP REPL

In Eclipse+Counterclockwise, when I want to connect to REPL, the dialog tells me I can use nREPL over HTTP: How to set this up? Is this somehow connected to drawbridge? I haven't been able to make ...
1
vote
2answers
55 views

Difference between compile time and run time

What is the difference between compile time and run time in SML? After writing some SML code, we hit enter. But I don't understand, are we actually compiling it or running it? For example - fun ...
2
votes
1answer
47 views

Different results when a function is evaluated in the REPL than in a program

I have a feeling the answer to my question is something to do with Clojure's lazy evaluation (which I am still fuzzy on...) So I have a function: (defn fix-str-old [string] (let [words (->> ...
4
votes
1answer
62 views

Clojure How to Expand Macro in Source File Versus Repl

I am leaning macros in Clojure and have a question about macro expansion. In the repl, when I do this: user=> (defmacro unless [pred a b] `(if (not ~pred) ~a ~b)) #'user/unless user=> ...
6
votes
2answers
67 views

scala.tools.nsc.IMain within Play 2.1

I googled a lot and am totally stuck now. I know, that there are similar questions but please read to the end. I have tried all proposed solutions and none did work. I am trying to use the IMain ...
0
votes
1answer
46 views

How can I use a javascript library on the server side of a NodeJS app when it was designed to run on the client?

I'm diving into NodeJS and Express (it's sooo complicated to me) to build a real-time web app. At the moment, I'm trying to understand how I can use an existing javascript library on the server side. ...
1
vote
1answer
33 views

Accessing MIT/GNU Scheme's REPL return value

Is there a symbol that is used to refer to the return value of the last evaluated expression in the MIT/GNU Scheme repl? For example: Python uses _ Haskell uses it
6
votes
2answers
272 views

Is there a way in Visual Studio 2012 to use F# REPL when debugging c#

If I have a breakpoint in a c# program I would love to use the F# REPL to inspect my code. Is this possible in any way?
1
vote
2answers
41 views

Testing a REPL in Ruby with RSpec and threads

I'm using RSpec to test the behavior of a simple REPL. The REPL just echoes back whatever the input was, unless the input was "exit", in which case it terminates the loop. To avoid hanging the test ...
0
votes
1answer
25 views

How to reopen file descriptor 0, 1 and 2?

Say in the python REPL I, separately, called os.close with 0, 1 and 2 which are the standard input, output and error. How could I reopen/reinitialize them? Such that I would close them in the start of ...
0
votes
1answer
39 views

Ruby, pry: Can I add something to the command `pry example.rb` so pry automatically goes interactive when it finishes executing the script?

Pry goes into interactive mode if it encounters an exception (eg if you just put an undefined variable 'x' at the end of the script). (Also if, inside the script itself you require 'pry' and put ...
0
votes
2answers
120 views

Why does FSharp interactive allow mutable let?

In FSI I type > let a = 10;; val a : int = 10 > let a = a + 1;; val a : int = 11 Looks like I have a mutable variable here? Am I missing something?
4
votes
1answer
105 views

Easy way to work with text without having to escape quotation marks in Clojure?

I'm playing around with text parsing in the REPL, and sometimes want to dump in a bunch of data into a string, whether it's a bibtex entry or some EBNF notation etc. Typically there might be quotation ...
0
votes
2answers
52 views

C++ IDE with repl?

I'm looking for a good C++ IDE with a REPL. The one in visual studio isn't... well lets say most of the time if I copy/paste a line in source the REPL rejects it even if its the line I put a ...
1
vote
2answers
81 views

clojure partial clarification

I'm reading a book on clojure, and I came by an example that I dont fully understand.. Here is the code in repl: user=> (repeatedly 10 (rand-int 10)) ClassCastException java.lang.Integer cannot ...
2
votes
1answer
39 views

Error when entering decimal number in clojure repl

When I enter user> (* 10 .5) in my clojure repl I get this message: CompilerException java.lang.RuntimeException: Unable to resolve symbol: .5 in this context, compiling:(NO_SOURCE_PATH:1:1) I ...
2
votes
2answers
92 views

Why don't absolute classpaths work when starting clojure repl?

A problem has traped me for quite a while when I'm exploring Clojure. I try to generate a class by invoking the compile function in REPL on a Clojure script as below: (ns mylib.DirLister ...
1
vote
1answer
34 views

Scheme Lambda Return Values

Scheme is about to drive me crazy. In the code below I am simply trying to parse the string given to repl into an actual list. Instead when I print what is supposed to be my parsed list all I get is a ...
5
votes
2answers
94 views

In Common Lisp what is a printed representation?

I'm using SBCL, emacs, slime, and quicklisp to install various packages. I instantiate and start a hunchentoot acceptor like so, CL-USER> (hunchentoot:start (make-instance 'hunchentoot:acceptor ...
1
vote
1answer
111 views

Can you program without REPL on Lisp?

So I just got Land of Lisp and started to do the first program. I have a couple questions. Is there a way to just write some code and run it through a compiler, or interpreter, and not use the REPL ...
0
votes
0answers
74 views

SBT - Scala version mismatch

I have the latest Scala IDE 3.0 installed on Eclipse 4.2.2 I installed the latest SBT using brew install sbt When I run SBT and type the command console this is what I get > console [info] ...
0
votes
1answer
62 views

How to make my scala program quit and return to the REPL?

So I made this scala file and it works great when I load it into the REPL. What I want to do though is when the user inputs "Q", it exits the program and returns to the REPL. I already have readLine ...
1
vote
2answers
70 views

Scala REPL: How to add remote Maven repository to Scala REPL classpath?

Scala REPL is great for trying different code snippets. It would be great if one could run code using libraries from Maven repositories in Scala REPL. How to add remote Maven repository to Scala REPL ...
1
vote
0answers
32 views

write a REPL: where to start?

I learned Ruby and Scala, and they both have a great REPLs. The interactive tools help me a lot when learning a language. Recently I'm learning Haxe and found it doesn't have a real REPL(just a ...
4
votes
1answer
72 views

handy ways to show linearization of a class?

I'll bet there are some snazzy ways to show linearization in the repl via the new reflection libraries and/or repl power mode. What are they? In my particular case, I'm trying to understand the ...
0
votes
1answer
83 views

Scala REPL: How to find function type?

In Scala REPL one can find value types: scala> val x = 1 x: Int = 1 scala> :t x Int Yet Scala REPL does not show the type information for functions: scala> def ...
4
votes
1answer
92 views

How to get the last exception object after an error is raised at a Python prompt?

When debugging Python code at the interactive prompt (REPL), often I'll write some code which raises an exception, but I haven't wrapped it in a try/except, so once the error is raised, I've forever ...
1
vote
2answers
76 views

Why Scala REPL shows tuple type for Map expression?

Scala REPL gives the same type for both expressions - (tuple? -- strange!). Yet ("a" ->1) which is a Map I can add to map and ("a", 1)can not. Why Scala REPL shows tuple type type for Map ...
2
votes
3answers
61 views

How do I print args when defined as a String Array in Scala?

This may just be me not understanding how to use REPL but I would like to be able to call MyObject.myMethod("Hi") and print Hi or This is my message Hi Here are some failed attempts: object MyObject ...
1
vote
5answers
85 views

Using jQuery at Console?

I'm learning more about jQuery and would like to use it interactively at the JavaScript console in Chrome. Is that possible? I envision something like this, but it doesn't work: > use('jquery.js') ...
1
vote
1answer
164 views

PhantomJS: page.open() does not respond when running in REPL

I'm trying to run some phantomJS by sending it in via Standard Input, but my webpage open does not respond. Here is the javascript I'm trying to execute: ...
0
votes
0answers
23 views

How to change background color in REPL in Eclipse's Scala plugin?

How to change background color in REPL in Eclipse's Scala plugin? My Scala syntax coloring scheme is configured to work with a dark background and is currently unusable with the REPL's white ...
1
vote
2answers
166 views

User Input Perl Programs with Sublime Text 2

I have been writing scripts and building them no problem. But what about when I want to accept user input? I installed SublimeREPL and selected the perl package but I am not sure how to run my ...
0
votes
0answers
255 views

ClojureScript & Node.js Workflow [closed]

I have been working on some projects in Clojure for the last couple of months. Now I started a new project that will require a webserver. So I figured that this would be a good opportunity to learn ...
2
votes
1answer
105 views

Clojure REPL not launching at Windows command prompt

I have placed the clojure-1.4.0.jar path (C:\clojure-1.4.0\clojure-1.4.0.jar) in my CLASSPATH environment variable. Now when I try to launch the REPL from the command line with the following code: ...
8
votes
1answer
185 views

Is it possible to change the prompt of Scala REPL programatically?

I want to change the prompt of Scala REPL. I found out that I can change the prompt in power-mode like the following. scala> scala> :power ** Power User mode enabled - BEEP WHIR GYVE ** ** ...
0
votes
2answers
85 views

Scala REPL fails to autocomplete methods that comes from implicit conversion

if I write in scala 2.10 REPL (interactive Scala shell): """\w""". And press TAB it gives me: + asInstanceOf charAt codePointAt ...
0
votes
3answers
53 views

Printing all the global methods in Python REPL

In Python REPL dir(str) prints ['__add__', '__class__', '__contains__', '__delattr__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', ...
0
votes
1answer
69 views

Run tests from a single namespace using clojure and midje 1.4.0

I want to call my midje 1.4.0 unit tests from one namespace from a clojure repl without leiningen. The background is I want to call them from a shortcut in vim without all the other tests in the ...
2
votes
2answers
166 views

How to (re)load files in Racket (X)REPL?

Suppose I have a file like #lang racket/base (define (hello) (print "Hello")) ... more definitions ... and I would like to load the definitions in the file to interactively work with them in the ...
1
vote
1answer
174 views

In Emacs nodejs mode get garbage prompt [duplicate]

I use nodejs-mode on Emacs 24, But when i type: M-x nodejs it prompt garbage prompts like [0J>, now even though i have added below (setq ansi-color-for-comint-mode t) in emacs file. It still ...
6
votes
3answers
231 views

scala case class private apply method( repl bug ?)

in Scala2.10.0 REPL Welcome to Scala version 2.10.0 (Java HotSpot(TM) 64-Bit Server VM, Java 1.7.0_13). Type in expressions to have them evaluated. Type :help for more information. scala> case ...
2
votes
0answers
58 views

Checking what functions you have defined in the REPL

Is there any nice REPL command which will return function definitions of everything you have defined? Failing that something similar to !: in SBT which shows all previous commands. Thanks.
3
votes
2answers
104 views

How to stop execution of function in Clojure without exiting REPL?

Is it possible in a Clojure REPL to stop the execution of a function without terminating the REPL session? How can I do this? I'm using lein repl in bash, if it matters. I'm using Leiningen 1.7.1

1 2 3 4 5 8