Free Ideone API
try it now!
Your great ideas will be born here
Recent public pastes are listed below. You can filter them by the following programming languages:
- view
- All
- Ada
- Assembler
- AWK (gawk)
- AWK (mawk)
- Bash
- bc
- Brainf**k
- C
- C#
- C++
- C99 strict
- CLIPS
- Clojure
- COBOL
- COBOL 85
- Common Lisp (clisp)
- D (dmd)
- Erlang
- F#
- Factor
- Falcon
- Forth
- Fortran
- Go
- Groovy
- Haskell
- Icon
- Intercal
- Java
- JavaScript (rhino)
- JavaScript (spidermonkey)
- Lua
- Nemerle
- Nice
- Nimrod
- Ocaml
- Oz
- Pascal (fpc)
- Pascal (gpc)
- Perl
- Perl 6
- PHP
- Pike
- Prolog (gnu)
- Prolog (swi)
- Python
- Python 3
- R
- Ruby
- Scala
- Scheme (guile)
- Smalltalk
- Tcl
- Text
- Unlambda
- Visual Basic .NET
- Whitespace
-
1 2 3 4 5 6 7 8
<!-- ONE STEP TO INSTALL QUEEN'S QUEST: 1. Copy the coding into the BODY of your HTML document -->
...
-
1 2 3 4 5 6 7 8 9
<div id="lga"> <style> body{overflow:hidden}#hplogo{position:relative;width:0;margin:0 auto;right:190px;height:160px}.particle{position:absolute;z-index:-1}.circle{-moz-border-radius:160px;-webkit-border-radius:160px;-khtml-border-radius:160px;border-radius:160px}#cpf,#sbl,#fctr{background:transparent} </style> <noscript> <style>#hplogo{right:0;width:auto;background:url(/intl/en_ALL/images/srpr/logo1w.png) no-repeat center}</style> </noscript> <div id="hplogo"> <div class="particle circle" style="background-color: rgb(237, 157, 51); height: 18.337px; width: 18.337px; left: 200.733px; top: 77.5385px;">
...
-
1
alert(1)
-
1 2 3 4 5 6 7 8
var me = new Object(); me.name = "CA"; me.printName = function() { this.name; } me.printName();
-
1
alert('hello');
-
1 2 3
<script> alert('hello'); </script>
-
1
print a
-
1 2 3 4 5 6
function f() { var p = 1; } var c = new f(); console.log(c);
-
1 2 3 4
<script> alert("Hello"); </script>
-
1
alert('hi');
-
1 2 3 4 5 6 7
<script type="text/javascript"> var str="Hello world!"; document.write(str.substring(3)+"<br />"); document.write(str.substring(3,7)); </script>
-
1 2 3
while((num = readline()) != 42) { print(num); }
-
1
alert("Hello World")
-
1 2 3
while((num = readline()) != 42) { print(num); }
-
1
-
1 2 3 4 5 6 7 8 9
<HTML><HEAD><TITLE></TITLE> <META http-equiv=Content-Type content="text/html; charset=windows-1252"> <SCRIPT language=JavaScript1.2> <!-- Countdown bis zur WM --> function setcountdown(theyear,themonth,theday) { yr=theyear;mo=themonth;da=theday }
...
-
1 2 3 4 5 6 7 8 9
<script language="javascript"> function diasonline(){ fecha= new Date(); hoy = new Date(fecha.getFullYear(),fecha.getMonth()+1,fecha.getDate()); //reemplaza new Date(2001,03,26) por la fecha de inicio de tu site asi: new Date(aaaa,mm,dd) inicio = new Date(2001,03,26) resta = hoy.getTime() – inicio.getTime(); resultado = Math.floor(resta/(1000*60*60*24)); document.write(resultado+" dias `online`");
...
-
1 2 3
while((num = readline()) != 42) { print(num); }
-
1 2 3 4 5
function a (n) { return n + 5 }; a(10)
-
1
alert('alo')
-
1
alert('hello');
-
1 2 3
while((num = readline()) != 42) { print(num); }
-
1 2 3
hello(){ alert('hello'); }
-
1
http://ideone.com/85iQk
-
1
http://ideone.com/85iQk
-
1 2 3 4 5 6 7 8 9
var a = function() { var x=5; var b = function() { print(x); } x=42; return b;
...
-
1 2 3 4 5 6 7 8 9
var a = function() { var x=0; var b = function() { print(x); } x=1; b();
...
-
1 2 3 4 5 6 7 8 9
function a() { var x=0; function b() { print(x); } x=1; b();
...
-
1 2 3 4 5 6 7 8 9
function a() { var x=0; function b() { print(x); } x=1; b(); x=2; }
...
-
1 2 3
<script> alert(''+4); </script>
