Where can I find an online interactive console for programming language or api?

link|improve this question
6  
There is a nice list of such tools by Joel Franusic – kuszi Jan 17 '11 at 22:38
@kuszi thanks for the link. Your post is definitely the answer – OnesimusUnbound May 27 '11 at 4:27
feedback

12 Answers

up vote 0 down vote accepted

@kuszi Put a great answer as a comment to the question, but I almost missed it because it was a comment rather than the answer.

This link goes to a huuuge list of REPs and REPLs for tons of languages.

link|improve this answer
feedback
link|improve this answer
1  
That online Python interpreter is basically worthless for learning Python. You can't define your own functions or classes, so it's not going to be much use to anyone. – Eli Courtwright Sep 8 '08 at 3:38
dead links -- see repl.it instead – Andrei Apr 22 at 19:33
feedback

repl.it supports multiple languages including Python, Ruby, Lua, Scheme, CoffeeScript, QBasic, Forth,...the list goes on.

link|improve this answer
feedback

Google has an online interactive shell for Python.

link|improve this answer
this shell has some major bugs. I couldn't manipulate an object property inside an object method – andho Jun 17 '11 at 16:06
feedback

Skulpt is a Python implementation in JavaScript. Pretty cool.

link|improve this answer
feedback

_Why made one for Ruby

link|improve this answer
Why am I getting downvoted here? marxidad just duplicated this information – Nick Retallack Oct 3 '08 at 20:22
feedback

You can play around with jsScheme for Scheme, but it's a toy and shouldn't replace a console-based interpreter.

link|improve this answer
feedback

You can try this http://doc.pyschools.com/console. It is actually an editor, and is good for testing your python code online when you do not have it installed on your computer.

link|improve this answer
feedback

python web console, and I was able to run the code below

# Script text here
import itertools

g = itertools.chain("AB", range(2))

print g.next()
print g.next()
print g.next()
print g.next()
link|improve this answer
feedback

Firebug Lite for Javascript. And, Rainbow 9 was one of the first examples of online REPLs.

link|improve this answer
feedback

http://repl.it/ is a Python in a browser without Java or Silverlight (as well as dozen of other languages compiled to JavaScript).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.