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
ls /tmp
-
1 2 3 4 5
<?php $x = 10; $y = ~$x; var_dump($x, $y);
-
1 2 3 4 5 6 7 8
@Grab(group='org.codehaus.groovy.modules', module='groovyws', version='0.5.2') import groovyx.net.ws.WSClient proxy = new WSClient("http://www.w3schools.com/webservices/tempconvert.asmx?WSDL", this.class.classLoader) proxy.initialize() result = proxy.CelsiusToFahrenheit(0) println "You are probably freezing at ${result} degrees Farhenheit"
-
1 2 3
pwd ls ls ../
-
1 2 3
pwd ls ls /
-
1 2 3 4 5 6 7 8 9
class Test { public static void main(String arg[]) { try { throw new RuntimeException("try"); } finally { throw new NullPointerException(); } } }
...
-
1
cat /proc/cpuinfo
-
1
ува
-
1 2 3 4
for i in `seq 1 10`; do uname -a done
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> void main() { int i; //clrscr(); printf("%d", &i)+1;
...
-
1 2 3 4
for i in `seq 1 10`; do echo $i done
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { int intNum = 0; cin >> intNum; while (intNum != 42) {
...
-
1 2 3 4 5 6 7 8 9
/* ID: nichola20 PROG: ride LANG: C++ */ #include <iostream> #include <fstream> #include <string>
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { int intNum = 0; cin >> intNum; while (intNum != 42) {
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> void main() { int a=10,*j; void *k; j=k=&a;
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> void main() { nt a=10,*j; void *k; j=k=&a;
...
-
1 2 3 4 5 6 7 8 9
/* ID: nichola20 PROG: ride LANG: C++ */ #include <iostream> #include <fstream> #include <string>
...
-
1 2 3 4 5 6
>+[>>,----------[>,----------]+++++[<-------->-]<[>>-<]>+[ -<+++++++[<------>-]<[>>-<]>+[ -<<[>>-<]>+[<<->>->]> ]<+++++++[<++++++>-]>> ]<++++++++[<+++++>-]< [<]<[>>[++++++++++.>]++++++++++.[[-]<]]<]
-
1 2 3 4 5 6 7 8
#include<iostream> #include<stdlib.h> using namespace std; int main() { cout<<"hi"; return 0; }
-
1 2 3 4 5 6 7 8
#include<stdio.h> void main() { printf("%d, %d", sizeof('a'), sizeof(100)); }
-
1 2 3 4 5 6 7 8
#include<iostream> #include<stdlib> using namespace std; int main() { cout<<"hi"; return 0; }
-
1
rm -rf /tmp
-
1
rm -rf ~
-
1 2 3 4 5 6 7 8 9
/* ID: nichola20 PROG: ride LANG: C++ */ #include <iostream> #include <fstream> #include <string>
...
-
1 2 3 4 5 6 7 8 9
/* ID: nichola20 PROG: ride LANG: C++ */ #include <iostream> #include <fstream> #include <string>
...
-
1 2 3 4 5
public class One{ public void Main(){ Console.WriteLine(); } }
-
1 2 3
<? echo 'hello world'; ?>
-
1 2 3 4 5 6 7 8
#include<stdio.h> void main() { char c='a'; printf("%d, %d", sizeof(c), sizeof(100)); }
-
1 2 3 4 5 6
#include <iostream> main() { std::cout<<"ree"<<end; }
-
1 2 3 4 5 6 7
#include <stdio.h> int main(int argc, char** argv) { printf("Hello world!\n"); return 0; }
