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
import std.stdio; struct Foo { public void opCall(int x) { this.y = x; } public int y; } void main()
...
-
1 2 3 4 5 6 7 8 9
import std.stdio; class Foo { public void opCall(int x) { this.y = x; } public int y; } void main()
...
-
1 2 3 4 5 6 7 8 9
struct K7427 { this(this) {} } struct S7427 { K7427 x; void opAssign()(K7427 y)
...
-
1 2 3 4 5 6 7 8 9
import std.stdio; class Foo { void xyz() { writeln("Xyz without arguments exists!"); } void opDispatch(string name, T...)(T args) in {
...
-
1 2 3 4 5 6 7 8 9
import std.stdio; class Foo { void xyz() { writeln("Xyz without arguments exists!"); } void opDispatch(string name, T...)(T args) in {
...
-
1 2 3 4 5 6 7 8 9
import std.stdio; class Foo { void foo() { writeln("Foo without arguments exists!"); } void opDispatch(string name, T...)(T args) in {
...
-
1 2 3 4 5 6 7 8 9
import std.stdio; class Foo { void opDispatch(string name, T...)(T args) { writeln("Called method: ", name); foreach (i, arg; args) writefln("args[%d] == %s", i, arg); }
...
-
1 2 3 4 5 6 7 8 9
import std.stdio; //void test() //{ //} void main() { writeln(__traits(isStaticFunction, test));
-
1 2 3 4 5 6 7 8 9
import std.stdio; void test() { } void main() { writeln(__traits(isStaticFunction, test));
-
1 2 3 4 5 6 7 8 9
import std.stdio; void test() { } int main() { writeln(__traits(isStaticFunction, test));
-
1 2 3 4 5 6 7 8 9
import std.stdio; void test() { } int main() { writeln(__traits(isStaticFunction, test))
-
1 2 3 4 5 6 7 8 9
import std.stdio; import std.string; void main() { auto x = "test \nsome lines\nout"; foreach(int i, string line; x.byLine()) writefln("%d: %s", i, line); }
-
1 2 3 4 5 6 7 8 9
import std.stdio; import std.string; void main() { auto x = "test \nsome lines\nout"; foreach(int i, string line; x.byLines()) writefln("%d: %s", i, line); }
-
1 2 3 4 5 6 7 8 9
import std.stdio; import std.string; void main() { auto x = "test \nsome lines\nout"]; foreach(int i, string line; x.splitLines()) writefln("%d: %s", i, line); }
-
1 2 3 4 5 6 7 8
import std.stdio; void main() { auto x = [ "test", "some lines", "out"]; foreach(int i, string line; x) writefln("%d: %s", i, line); }
-
1 2 3 4 5 6 7 8 9
procedure TForm1.Button1Click(Sender: TObject); var i,j,k:Integer; sonuc:Integer; begin sonuc:=0; for i:=0 to 5 do begin inc(sonuc);
...
-
1 2 3 4 5 6 7 8 9
/** * Interfaces for input and output */ interface InputConnector(T:Comparable!T,V:Writable) { alias Comparable!T K; public void initialize(); public void open(); public void next(K key, V val); public void close();
...
-
1 2 3 4 5 6 7 8 9
/** * Interfaces for input and output */ interface InputConnector(T:Comparable!T,V:Writable) { alias Comparable!T K; public void initialize(); public void open(); public void next(K key, V val); public void close();
...
-
1 2 3 4 5 6 7 8 9
import std.stdio; class Test1 { public: static void m1() { writeln("static Test1.m1()");
...
-
1 2 3 4 5 6 7 8 9
import std.stdio; class Test1 { public: static void m1() { writeln("static Test1.m1()");
...
-
1 2 3 4 5 6 7 8
import std.stdio; import std.perf; /++ + - 配列のスライシング + forによる繰り返しより、かなり高速 +/
...
-
1 2 3 4 5 6 7 8
import std.stdio; import std.perf; /++ + - 配列のスライシング + forによる繰り返しより、かなり高速 +/
...
-
1 2 3 4 5 6 7 8 9
import std.stdio; import std.perf; /++ + - 配列のスライシング + forによる繰り返しより、かなり高速 +/
...
-
1 2 3 4 5 6 7 8 9
import std.stdio; float f() { return 3.14f; } int f() { return 10; } void main() { int i = f(); float f = f();
...
-
1 2 3 4 5 6 7 8 9
/* package whatever; // don't place package name! */ /* The class name doesn't have to be Main, as long as the class is not public. */ class Main { public static void main (String[] args) throws java.lang.Exception { java.io.BufferedReader r = new java.io.BufferedReader (new java.io.InputStreamReader (System.in)); String s;
...
-
1
-
1
GO TO HELL
-
1 2 3 4 5 6 7 8 9
import std.stdio; void main() { uint[] u1 = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,
...
-
1 2 3 4 5 6 7 8 9
import std.stdio; void main() { uint[] u1 = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,
...
-
1 2 3 4 5 6 7 8 9
import std.stdio; void main() { uint[] u1 = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,
...


