Recent public codes are listed below. You can filter them by the following programming languages:
- view
- All
- Ada
- Assembler
- Assembler
- AWK (gawk)
- AWK (mawk)
- Bash
- bc
- Brainf**k
- C
- C#
- C++
- C++0x
- 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
- Objective-C
- Ocaml
- Oz
- Pascal (fpc)
- Pascal (gpc)
- Perl
- Perl 6
- PHP
- Pike
- Prolog (gnu)
- Prolog (swi)
- Python
- Python 3
- R
- Ruby
- Scala
- Scheme (guile)
- Smalltalk
- SQL
- Tcl
- Text
- Unlambda
- VB.NET
- Whitespace
-
1 2 3 4 5 6 7 8 9
1 class iftest 2 { 3 public static void main(String args[]) 4 { 5 int i=2; 6 if(i=2) { 7 System.out.println(“Correct”); } 8 else 9 System.out.println(“Incorrect”); }
...
-
1 2 3 4 5 6 7 8 9
class iftest { public static void main(String args[]) { int i=2; if(i=2) { System.out.println(“Correct”); } else System.out.println(“Incorrect”); }
...
-
1 2 3 4 5 6 7 8
class check { public static void main(String args[]) { int m; System.out.print(“m is ”+m); } }
-
1 2 3 4 5 6 7 8 9
java cmdline Java is wonderful class cmdline { public static void main(String args[]) { for(int i=1;i<args.length;i++) { System.out.print(args[i]); if(i!=args.length)
...
-
1
-
1 2 3
while((num = readline()) != 42) { print(num); }
-
1 2 3
while((num = readline()) != 42) { print(num); }
-
1 2 3
print("asd"+3); print(3+"123"+3);
-
1 2 3
print("asd"+3); print("123"+3);
-
1
"asd "+3
-
1
console.log("asd "+3)
-
1
document.write("asd "+3)
-
1 2 3 4 5 6 7 8 9
<?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head> <title>Geocache GC... Für Informatiker - 2</title> </head>
...
-
1 2 3 4 5 6 7 8 9
var temp = parseInt(prompt("Enter a number between 1-10")); var num = Math.floor(Math.random()*10)+1; var isGuessTrue = function() { if (temp !== num) { if(temp >= num + 2 || temp <= num - 2) { return 0; } else {
...
-
1 2
var a = new function() { this.gh = "sdf"; }(); print(a.gh);
-
1 2
var a = new (function() { this.gh = "sdf"; })(); print(a.gh);
-
1 2 3
while((num = readline()) != 42) { print(num); }
-
1 2 3 4 5 6 7 8 9
function Check(checksum) { var tab = " azertyuiopqsdfghjklmwxcvbnAZERTYUIOPQSDFGHJKLMWXCVBN0123456789_$&#@"; var entry = document.forms["asdf"].elements[0].value; var n = entry.length; var sum = 1; for(var i=0;i<n;i++) { var index = tab.indexOf(entry.substring(i,i+1));
...
-
1 2 3 4
var a = {}; print(a.asdf == null); print(a.asdf == undefined); print(typeof a.asdf);
-
1 2
var a = {}; print(a.asdf == null);
-
1 2 3 4 5 6 7 8 9
class sample { public static void main(String args[]) { try { int a=Integer.parseInt(args[0]); int b=Integer.parseInt(args[1]); int c = a + b;
...
-
1 2 3 4 5 6 7
{ if(i%2==0) continue; else System.out.println(i+” “); } }
-
1 2 3 4 5 6 7 8 9
{ public static void main(String args[]) { int x=3, y=1,z=5; if(x>y) { if (z<=y) { System.out.println(“y is greater than z”);
...
-
1 2 3 4 5 6 7 8 9
n=5; r=n%3; if (r == 0) System.out.println(“zero”); else if (r ==1) System.out.println(“one”); else if (r == 2)
...
-
1 2 3 4 5 6 7 8 9
n=5; r=n%3; if (r == 0) System.out.println(“zero”); else if (r ==1) System.out.println(“one”); else if (r == 2)
...
-
1 2 3 4 5 6
int m = 100; int n =103; while(++m<=--n); { System.out.print(m); }
-
15 days 22 hours ago view (lines: 71, size: 2458, inputs: 1) JavaScript (spidermonkey) Runtime error
1 2 3 4 5 6 7 8 9
import java.io.*; import java.net.*; import java.util.*; import javax.crypto.*; import javax.crypto.spec.*; public class MCExploit { public static void main(String[] args) throws Exception
...
-
1 2 3 4 5 6 7 8 9
java cmdline Java is wonderful class cmdline { public static void main(String args[]) { for(int i=1;i<args.length;i++) { System.out.print(args[i]); if(i!=args.length)
...
-
1 2 3 4 5 6 7 8 9
java cmdline Java is wonderful class cmdline { public static void main(String args[]) { for(int i=1;i<args.length;i++) { System.out.print(args[i]); if(i!=args.length)
...
-
1 2 3 4 5 6
i =2; while(i < (num = readline())) { i=i*i; print(louie); } print(i);


