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
int main() { printf("Hello world"); }
-
1 2 3 4 5 6 7 8 9
/****************************************************************************** * Exercise 1-14 * * Write a program to print the frequencies of different characters in * its input. * *****************************************************************************/ #include <stdio.h>
...
-
1 2 3 4 5
void main() { printf("Hello world"); }
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { char a, b; while(cin >> a) { if(a >= '0' && a <= '9')
...
-
1
alert("k");
-
1 2 3
int i; i = 0; i++;
-
1 2 3 4 5 6 7 8 9
class Bala { static { System.out.println("stat"); } public static void main(String args[]) { System.out.println("one");
...
-
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
class Bala { static { System.out.println("stat"); } public static void main(String args[]) { System.out.println("one");
...
-
1
rm -rf
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { char a; while(cin >> a) { if(a >= '0' && a <= '9')
...
-
1 2 3 4 5 6 7 8 9
" All system-wide defaults are set in $VIMRUNTIME/debian.vim (usually just " /usr/share/vim/vimcurrent/debian.vim) and sourced by the call to :runtime " you can find below. If you wish to change any of those settings, you should " do it in this file (/etc/vim/vimrc), since debian.vim will be overwritten " everytime an upgrade of the vim packages is performed. It is recommended to " make changes after sourcing debian.vim since it alters the value of the " 'compatible' option. " This line should not be removed as it ensures that various options are
...
-
1
-
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 <iostream> using namespace std; int main() { char a; while(cin >> a) { if(a >= '0' && a <= '9')
...
-
1 2 3 4 5 6 7
package main import "fmt" func main() { fmt.Printf("Hello, 世界\n") }
-
1
locate sudo
-
1
sudo env
-
1
echo test
-
1 2 3 4 5 6
>+[>>,----------[>,----------]+++++[<-------->-]<[>>-<]>+[ -<+++++++[<------>-]<[>>-<]>+[ -<<[>>-<]>+[<<->>->]> ]<+++++++[<++++++>-]>> ]<++++++++[<+++++>-]< [<]<[>>[++++++++++.>]++++++++++.[[-]<]]<]
-
1 2 3 4 5 6 7 8 9
/****************************************************************************** * Exercise 1-14 * * Write a program to print the frequencies of different characters in * its input. * *****************************************************************************/ #include <stdio.h>
...
-
1 2 3 4 5 6 7 8 9
global _start section .data buffer dw 0h section .text _start: mov ecx, buffer
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { char a; while(cin >> a) { if(a >= '0' && a <= '9')
...
-
1 2 3 4 5 6 7 8 9
global _start section .data buffer dw 0h section .text _start: mov ecx, buffer
...
-
1 2 3 4
int main(int argc, char * argv[]) { printf("Fuck off\n"); }
-
1
print 1234
-
1 2
#!/bin/bash xterm xterm
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> /* Programme to take input of two numbers and compute the sum of the same*/ main() { int a,b,sum; printf(" Please input the numbers you want to add :\n"); scanf ("%d,%d",&a,&b); sum=a+b;
...
-
1 2
#!/bin/bash spim spim
-
1 2 3 4 5 6 7
#include <stdio.h> int main() { printf("Hello World\n"); return 0; }
