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
using System; public module HelloWorld { public Main() : void { Console.WriteLine("Hello world!"); } }
-
1 2 3 4 5 6 7 8
using System; public module HelloWorld { public Main() : void { Console.WriteLine("Hello world!"); } }
-
1 2 3 4 5 6 7
Get Library System Make New Text Called Name With Value Of Damian Print Text On Screen With Value Of Name Close Application And Stop Code
-
1 2 3 4 5 6 7 8 9
using System.Console; using System.Collections.Generic; interface ITest[T] {} class Test[T] : ITest[T] {} module A { public delegate FuncTest[TSource, TResult](s : TSource) : TResult;
...
-
1 2 3 4 5 6 7 8 9
using System.Console; using System.Collections.Generic; interface ITest[T] {} class Test[T] : ITest[T] {} module A { public delegate FuncTest[TSource, TResult](s : TSource) : TResult;
...
-
1 2 3 4 5 6 7 8 9
using System.Console; using System.Collections.Generic; interface ITest[T] {} class Test[T] : ITest[T] {} module A { public delegate FuncTest[TSource, TResult](s : TSource) : TResult;
...
-
1 2 3 4 5 6 7 8 9
using System.Console; using System.Collections.Generic; interface ITest[T] {} class Test[T] : ITest[T] {} module A { public delegate FuncTest[TSource, TResult](s : TSource) : TResult;
...
-
1 2 3 4 5 6 7 8 9
using System.Console; using System.Collections.Generic; module E { public delegate FuncTest[TSource, TResult](s : TSource) : TResult; public SelectTest[TSource, TResult](this source : IEnumerable[TSource], selector : FuncTest[TSource, TResult]) : IEnumerable[TResult] {
...
-
1 2 3 4 5 6 7 8 9
using System.Console; using System.Collections.Generic; module E { public delegate FuncTest[TSource, TResult](s : TSource) : TResult; public SelectTest[TSource, TResult](this source : IEnumerable[TSource], selector : FuncTest[TSource, TResult]) : IEnumerable[TResult] {
...
-
1 2 3 4 5 6 7 8 9
using System.Collections.Generic; module E { public delegate Func[TSource, TResult](s : TSource) : TResult; public SelectTest[TSource, TResult](this source : IEnumerable[TSource], selector : Func[TSource, TResult]) : IEnumerable[TResult] { null;
...
-
1 2 3 4 5 6 7 8 9
using System.Collections.Generic; module E { public delegate Func[TSource, TResult](s : TSource) : TResult; public SelectTest[TSource, TResult](this source : IEnumerable[TSource], selector : Func[TSource, TResult]) : IEnumerable[TResult] { null;
...
-
1 2 3 4 5 6 7 8 9
using System.Collections.Generic; using System.Linq; public class A { public B[T](source : IEnumerable[T]) : IEnumerable[T] { Enumerable.Select(source, fun(i) {i}); }
-
1 2 3 4 5 6 7 8 9
using System.Collections.Generic; using System.Linq; public class A { public B[T](source : IEnumerable[T]) : IEnumerable[T] { return Enumerable.Select(source, fun(i) {i}); }
-
1 2 3 4 5 6 7 8 9
using System.Collections.Generic; using System.Linq; public class A { public B[T](source : IEnumerable[T]) : IEnumerable[T] { return source.Select(fun(i) {i}); }
-
1 2 3 4 5 6 7 8
using System; public module HelloWorld { public Main() : void { Console.WriteLine("Hello world!"); } }
-
1 2 3 4 5 6
def result = match (number) { | 0 => "zero" | 1 => "one" | x when x < 0 => "negative" | _ => "more than one"
-
1 2 3 4 5 6 7 8 9
<?php $x = "ricardo@gmailcom"; if (ereg("@", $x)){ echo "contem car!"; }else{
...
-
1 2 3 4 5 6 7 8 9
<?php $x = "ricardo@gmailcom"; if (ereg(".", $x)){ echo "contem car!"; }else{
...
-
1 2 3 4 5 6 7 8 9
<?php $x = "ricardo@gmailcom"; if (ereg("@", $x)){ echo "contem car!"; }else{
...
-
1 2 3 4 5 6 7 8 9
<?php $x = "ricardo@gmailcom"; if (ereg(".", $x)){ echo "contem car!"; }else{
...
-
1 2 3 4 5 6 7 8 9
<?php $x = "ricardo@gmailcom"; if (ereg("@.+.", $x)){ echo "contem car!"; }else{
...
-
1
module A { Main() : void { mutable x : int; System.Console.WriteLine(x); } }
-
1
module A { Main() { mutable x : int; System.Console.WriteLine(x); } }
-
1
mutable x : int;
-
1
def a, b : int = (1,2);
-
1 2 3 4 5 6 7 8
using System; public module HelloWorld { public Main() : void { Console.WriteLine("Hello world!"); } }
-
1 2 3 4 5 6 7 8 9
if (DayOfMonth == 0) { for (mutable x : DateTime = MonthFirstDay; x <= MonthLastDay; x = x.AddDays(1)) { DatarowsForOneDay = dt .AsEnumerable() .Where( fun(row : DataRow) {
...
-
1 2 3 4 5 6 7 8 9
program test; var x:byte; begin readln(x); while x<>42 do begin writeln(x);
...
-
1 2 3 4 5 6 7 8
using System; public module HelloWorld { public Main() : void { Console.WriteLine("Hello world!"); } }
-
1 2 3 4 5 6 7 8 9
using System; public class Test { public static Main() : void { def solve() : void { def i = int.Parse(Console.ReadLine()); unless (i == 42) { Console.WriteLine(i);
...


