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
module (tree). mother(dez) -> sandra;
-
1 2
module (tree). mother(dez) -> sandra.
-
1
mother(dez) -> sandra;
-
1 2 3 4 5 6 7
-module(prog). -compile(export_all). start() -> whore(21). whore(Money) when Money<20 -> "Nigga Please"; whore(Money) -> "AIDS".
-
1 2 3 4 5 6 7
-module(whore). -compile(export_all). start() -> whore(21). whore(Money) when Money<20 -> "Nigga Please"; whore(Money) -> "AIDS".
-
1 2 3 4
start() -> whore(21). whore(Money) when Money<20 -> "Nigga Please"; whore(Money) -> "AIDS".
-
1
-
1 2 3 4 5 6 7 8 9
-module(prog). -export([main/0]). main() -> loop(). loop() -> case io:fread( "","~d" ) of eof -> true;
...
-
1 2
-export([here/9]). here(A,B,C,D,E,F,G,H,I) -> (A*E*I) + (B*F*G) + (C*D*H) - (C*E*G) - (B*D*I) - (A*F*H).
-
1
lists:sort([1,3,2]).
-
1 2
lists:sort([1,3,2]).
-
1
-module(prog).
-
1
-module(prog).
-
1 2
import(list). lists:sort([1,3,2]).
-
1
-module (mat).
-
1 2 3
-module (mat). - export([here/9]). here(A,B,C,D,E,F,G,H,I) -> (A*E*I) + (B*F*G) + (C*D*H) - (C*E*G) - (B*D*I) - (A*F*H).
-
1 2
det(A,B,C,D,E,F,G,H,I,Here):- Here is (A*E*I) + (B*F*G) + (C*D*H) - (C*E*G) - (B*D*I) - (A*F*H).
-
1
-module(prog).
-
1
-module(prog).
-
1
-module(prog).
-
1
-
1 2
import(lists). lists:sort([3,5,1,7,3,8,5,2,1]).
-
1 2 3 4 5 6 7 8 9
import java.util.Arrays object Main { def main() { val list = Array( 1, 5, 2, 3, 3.14, -2 ); Arrays.sort(list); for( i <- 0 until list.length ) { System.out.print( list(i) );
...
-
1 2 3
-module(prog). -export([hello_world/0]). hello_world() -> io:fwrite(2+2).
-
1 2 3
-module(prog). -export([hello_world/0]). hello_world() -> io:fwrite(2+2).
-
1 2 3
-module(hello). -export([hello_world/0]). hello_world() -> io:fwrite(2+2).
-
1 2
-module(hello). io:fwrite(2+2).
-
1
io:fwrite(2+2).
-
1
io:fwrite(2+2).
-
1 2 3 4 5 6 7 8
-module(prog). -export([main/0]). main() -> print_numbers(5). print_numbers(N) -> print_str(N, 2 * N - 1).
...


