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
- Java7
- 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 2 3 4 5 6 7 8 9
...
-
1 2 3 4 5 6 7
package main import "fmt" func main(){ n := ( [] + {} ) fmt.Printf("%d\n",n) }
-
1 2 3 4 5 6 7
package main import "fmt" func main(){ n := ( {} + {} ) fmt.Printf("%d\n",n) }
-
1 2 3 4 5 6 7
package main import "fmt" func main(){ n := ( {} + [] ) fmt.Printf("%d\n",n) }
-
1 2 3 4 5 6 7
package main import "fmt" func main(){ n := ( [] + [] ) fmt.Printf("%d\n",n) }
-
1 2 3 4 5 6 7
package main import "fmt" func main(){ n := [] + [] fmt.Printf("%d\n",n) }
-
1 2 3 4 5 6 7
package main import "fmt" func main(){ n := 1 + 1 fmt.Printf("%d\n",n) }
-
1 2 3 4 5 6 7
package main import "fmt" func main(){ n := 1 + 1 fmt.Printf("%d\n",n) }
-
1 2 3 4 5 6 7 8
package main import "fmt" func main(){ var n int n = 1 + 1 fmt.Printf("%d\n",n) }
-
1 2 3 4 5 6 7
package main import "fmt" func main(){ var n int n = [] + {} fmt.Printf("%d\n",n) }
-
1 2 3 4 5 6 7
package main import "fmt" func main(){ var n int n = {} + {} fmt.Printf("%d\n",n) }
-
1 2 3 4 5 6 7
package main import "fmt" func main(){ var n int n = {} + [] fmt.Printf("%d\n",n) }
-
1 2 3 4 5 6 7
package main import "fmt" func main(){ var n int n = [] + [] fmt.Printf("%d\n",n) }
-
1 2 3 4 5 6 7
package main import "fmt" func main(){ var n int n = [] + {} fmt.Printf("%d\n",n) }
-
1 2 3 4 5 6 7
package main import "fmt" func main(){ var n int n = {} + {} fmt.Printf("%d\n",n) }
-
1 2 3 4 5 6 7
package main import "fmt" func main(){ var n int n = {} + [] fmt.Printf("%d\n",n) }
-
1 2 3 4 5 6 7
package main import "fmt" func main(){ var n int n = [] + [] fmt.Printf("%d\n",n) }
-
1 2 3 4 5 6 7
package main import "fmt" func main(){ var n int n = 10 + 1 fmt.Printf("%d\n",n) }
-
1 2 3 4 5 6 7
import std.c.stdio; int main() { int x = [] + {} ; printf ("%d\n", x); return 0; }
-
1 2 3 4 5 6 7 8 9
// This program solves the (English) peg solitaire // board game. See also: // http://en.wikipedia.org/wiki/Peg_solitaire package main import "fmt" const N = 11 + 1 // length of a board row (+1 for \n)
...
-
1 2 3 4 5 6 7 8 9
// Peano integers are represented by a linked list // whose nodes contain no data (the nodes are the data). // See: http://en.wikipedia.org/wiki/Peano_axioms // This program demonstrates the power of Go's // segmented stacks when doing massively recursive // computations. package main
...
-
1 2 3 4 5
package main import "fmt" func main(){ fmt.Println("Hello, World); }
-
1 2 3 4 5 6 7 8 9
package main import "fmt" func main(){ var n int fmt.Scanf("%d",&n) for n!=42 { fmt.Printf("%d\n",n) fmt.Scanf("%d",&n) }
...
-
1 2 3 4 5 6 7 8 9
public class c{ public static void main(String[] args){ calc(21); } public static int calc(int n){ int x = 0; while(n != 0){ int y = n%3; n = n%3;
...
-
1 2 3 4 5 6 7 8 9
package main import ( "fmt" "strings" ) func main() { rawList := "OKLogger, Minequery, WorldEdit, FalseBookChat, FalseBookBlock, VoxelSniper, WorldInventories, DimensionDoor, RecipeManager, Vault, xpShop, PermissionsEx, WorldGuard, BorderGuard, iConomy, Permissions, NoLagg, FalseBookIC, CraftBukkitUpToDate, ChestShop, FalseBookExtra, Modifyworld, PvPReward, NoCheat, Votifier, FalseBookCore, MyWarp, FalseBookCart, Essentials, ChatManager, CommandIConomy, EssentialsSpawn, LogBlock, EssentialsChat, Factions"
...
-
1 2 3 4 5 6 7 8 9
package main import ( "fmt" "strings" ) func main() { rawList := "OKLogger, Minequery, WorldEdit, FalseBookChat, FalseBookBlock, VoxelSniper, WorldInventories, DimensionDoor, RecipeManager, Vault, xpShop, PermissionsEx, WorldGuard, BorderGuard, iConomy, Permissions, NoLagg, FalseBookIC, CraftBukkitUpToDate, ChestShop, FalseBookExtra, Modifyworld, PvPReward, NoCheat, Votifier, FalseBookCore, MyWarp, FalseBookCart, Essentials, ChatManager, CommandIConomy, EssentialsSpawn, LogBlock, EssentialsChat, Factions"
...
-
1 2 3 4 5 6 7 8 9
package main import ( "fmt", "strings" ) func main() { rawList := "OKLogger, Minequery, WorldEdit, FalseBookChat, FalseBookBlock, VoxelSniper, WorldInventories, DimensionDoor, RecipeManager, Vault, xpShop, PermissionsEx, WorldGuard, BorderGuard, iConomy, Permissions, NoLagg, FalseBookIC, CraftBukkitUpToDate, ChestShop, FalseBookExtra, Modifyworld, PvPReward, NoCheat, Votifier, FalseBookCore, MyWarp, FalseBookCart, Essentials, ChatManager, CommandIConomy, EssentialsSpawn, LogBlock, EssentialsChat, Factions"
...
-
1 2 3 4 5 6 7 8 9
package "main" import ( "fmt", "strings" ) func main() { rawList := "OKLogger, Minequery, WorldEdit, FalseBookChat, FalseBookBlock, VoxelSniper, WorldInventories, DimensionDoor, RecipeManager, Vault, xpShop, PermissionsEx, WorldGuard, BorderGuard, iConomy, Permissions, NoLagg, FalseBookIC, CraftBukkitUpToDate, ChestShop, FalseBookExtra, Modifyworld, PvPReward, NoCheat, Votifier, FalseBookCore, MyWarp, FalseBookCart, Essentials, ChatManager, CommandIConomy, EssentialsSpawn, LogBlock, EssentialsChat, Factions"
...
-
1 2 3 4 5 6 7 8 9
public void decrypt(String password, int bit) { String result = ""; int i; if (password.length() == 0) { this.message = this.COULD_NOT_DECRYPT_NO_PASSWORD; return; }


