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
using System; using System.Console; /*using Nemerle.Imperative; using Nemerle.Utility;*/ def count=int.Parse(ReadLine()); foreach(max in [1..count]) {
...
-
1 2 3 4 5 6 7 8 9
using System; using System.Console; /*using Nemerle.Imperative; using Nemerle.Utility;*/ def count=int.Parse(ReadLine()); foreach(max in [1..count]) {
...
-
1 2 3 4 5 6 7 8 9
using System; using System.Console; /*using Nemerle.Imperative; using Nemerle.Utility;*/ def count=int.Parse(ReadLine()); foreach(max in [1..count]) {
...
-
1 2 3 4 5 6 7 8 9
using System; using System.Console; /*using Nemerle.Imperative; using Nemerle.Utility;*/ def count=int.Parse(ReadLine()); foreach(max in [1..count]) {
...
-
1 2 3 4 5 6 7 8 9
using System; using System.Console; WriteLine("Count?"); def count=int.Parse(ReadLine()); WriteLine(count);
-
1 2 3 4 5 6 7 8 9
using System; using System.Console; WriteLine("Count?"); def count=int.parse(ReadLine()); WriteLine(count);
-
1 2 3 4 5 6 7 8 9
using System; using System.Console; WriteLine("Count?"); def count=int.parse(ReadLine()); WriteLine(count);
-
1 2 3 4 5 6 7
using System; using System.Console; WriteLine("Count?"); def count=ReadLine():int; WriteLine(count);
-
1 2 3 4 5 6 7
using System; using System.Console; WriteLine("Count?"); def count=ReadLine(); WriteLine(count);
-
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
using System.Console; WriteLine(52/3/3.0); WriteLine(52/3.0/3.0);
-
1 2 3
using System.Console; WriteLine(52/3/3.0);
-
1 2 3
using System.Console; WriteLine(200-52/3.0);
-
1 2 3
using System.Console; WriteLine(52/3.0);
-
1 2 3
using System.Console; WriteLine(52/3);
-
1
print("sreenu")
-
1 2 3 4 5 6 7 8 9
using System; def factorial(n, acc) { | (0, _) | (1, _) => acc | _ => factorial(n - 1, n * acc) } def partedFactorial = factorial(_, 1); Console.WriteLine(partedFactorial(5));
-
1 2 3 4 5 6 7 8
def factorial(n, acc) { | (0, _) | (1, _) => acc | _ => factorial(n - 1, n * acc) } def partedFactorial = factorial(_, 1); Console.WriteLine(partedFactorial(5));
-
1 2 3 4 5 6 7 8 9
module Program { class Initializer { public Name : string { get; set; } public event HelloHandler : Action[string]; public SayHello() : void {
...
-
1 2 3 4 5 6 7 8 9
def title = "Programming language authors"; def authors = ["Anders Hejlsberg", "Simon Peyton-Jones"]; // 'xml' - macro from Nemerle.Xml.Macro library which alows to inline XML literals into the nemerle-code def html = xml <# <html> <head> <title>$title</title> </head>
...
-
1 2 3 4 5
#pragma indent using System; public module HelloWorld public Main() : void Console.WriteLine("Hello world!");
-
1 2 3 4 5 6 7 8 9
using System; public module HelloWorld { public interface ITest { } public class Test[T] where T : struct, ITest {
...
-
1 2 3 4 5 6 7 8 9
using System; public module HelloWorld { public interface ITest { } public class Test[T] where T : struct, new(), ITest {
...
-
1 2 3 4 5 6 7 8 9
using System; public module HelloWorld { public interface ITest { } public class Test[T] where T : struct, ValueType, new(), ITest {
...
-
1 2 3 4 5 6 7 8 9
using System; public module HelloWorld { public interface ITest { } public class Test[T] where T : ValueType, new(), ITest {
...
-
1 2 3 4 5 6 7 8 9
using System; public module HelloWorld { public interface ITest { } public class Test[T] where T : ValueType, ITest {
...
-
1 2 3 4 5 6 7 8 9
Tusing System; public module HelloWorld { public interface ITest { } public class Test[T] where T : ValueType, ITest {
...
-
1 2 3 4 5 6 7 8 9
using System; public module HelloWorld { public interface ITest { } public class Test[T] where T : struct, ITest {
...
-
1 2 3 4 5 6 7 8 9
using System; public module HelloWorld { public class Test[T] where T : struct, IComparable { public Value : Nullable[T]; } public Main() : void
...


