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
xb1lIHRvIG5lYnlsbyB0xJvFvmvDqT8gSmVuIHBybyDDunBsbm9zdCBwcm8gbm9ybcOhbG7DrSAo dGVkeSBuZXBvxI3DrXRhxI1vdsO9KSAgbGlkIC0gcHJvxI0gUG/FoXRvdm7DrT8gIEvDs2QgQmFz ZTY0LCBrdGVyw71tIGplIHRlbmhsZSB0ZXh0IHpha8OzZG92w6FuLCBwb3XFvsOtdsOhdGUgbWou ICAoYW5pxb4gdG8gdMWZZWJhIHbDrXRlKSB2ZSB2xaFlY2ggdmHFoWljaCBlbWFpbG92w71jaCB6 cHLDoXbDoWNoIGsgdG9tdSwgYWJ5IHNlIGsgdsOhbSBuZWJvIG9kIHbDoXMgZG9ixZllIHDFmWVu ZXNseSB2xaFlY2hueSBWYcWhZSBmb3RreSwgdmlkZWEsIHRleHR5IHMgxI1lc2tvdSBkaWFrcml0 aWtvdSBhIGppbsOpIHZ5Y2h5dMOhdmt5IChvYmVjbsOhIGJpbsOhcm7DrSBkYXRhIHNlIGvDs2R1 asOtIHBvIDYgYml0ZWNoIGRvIHRpc2tudXRlbG7DvWNoIDY0IHpuYWvFrywga3RlcsOpIGpzb3Ug cMWZZW5vc2l0ZWxuw6EgcG/FoXRvdm7DrW0gIE1JTUUgcHJvdG9rb2xlbSkuIFRha8W+ZSAgdGFr
...
-
1 2 3 4 5 6 7 8 9
=SUPERVISOR REPORT==== 19-Dec-2011::13:31:15 === Supervisor: {<0.50.0>,cowboy_requests_sup} Context: child_terminated Reason: {normal,{gen_fsm,sync_send_event, [<0.9190.6>,start,infinity]}} Offender: [{pid,<0.9189.6>}, {name,cowboy_requests_sup}, {mfargs,{cowboy_requests_sup,start_request,undefined}}, {restart_type,temporary},
...
-
1 2 3 4 5 6 7 8 9
11> {ok, Socket} = gen_tcp:connect("www.google.com.br", 80, [binary, {packet, 0}]). {ok,#Port<0.607>} 12> inet:getopts(Socket, [active]). {ok,[{active,true}]} 13> inet:getopts(Socket, [sndbuf]). {ok,[{sndbuf,16384}]} 14> inet:getopts(Socket, [recbuf]). {ok,[{recbuf,87380}]} 15> inet:getopts(Socket, [buffer]).
...
-
1 2 3 4
-module(sample). -export([hello_world/0]). hello_world() -> io:fwrite("Hello, World!\n").
-
1
-
1
io:format ("HELLO\n").
-
1 2 3 4 5 6 7 8 9
class helloJava { public static void main(String[] arg) { //print() メソッドは文字列出力だけです。 //println() メソッドは文字列出力後に改行します。 System.out.print("Katori:"); System.out.println("Hello java!!"); System.out.print("Java:"); System.out.println("hey,Katori.wats up..?");
...
-
1 2 3 4 5 6 7 8 9
% modul bedacy szablonem wzorca projektowego klient-serwer % w Erlangu -module(sklep) . -export([start/0]) . %-export([start/0, stop/0, fun1/0, fun2/1]). -export([init/0, loop/1, client/2]) . %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
...
-
1 2 3 4
-module(prog). -export([main/0]). main() -> io:fwrite("a").
-
1 2 3 4
-module(teste). -export([main/0]). main() -> io:fwrite("a").
-
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 3 4
-module(teste). -export(t/1). t(X) -> X.
-
1 2 3 4
-module(teste). -export(t/1). t(X) -> X.
-
1 2 3 4 5 6 7 8
fun :: [Int] fun = 0 : 1 : zipWith (+) fun (tail fun) line n = printf "%02x" $ ( (fun !! (30-n) ) `rem` 256 ) main = do sequence_ $ map line [1..16] printf "\n"
-
1 2 3 4 5 6 7 8 9
class Password { static void Main(string[] args) { console.Write("The password is: ") for (int i = 0; i < 6; i++) Console.Write(GetChar(i,i*i)); Console.readKay();
...
-
1 2 3 4 5 6 7 8 9
-module(mon_pop3). -compile(export_all). %% %% Login = {login, "username", "password"} %% check(Host, Port, Login) -> check(Host, Port, Login, 10000).
...
-
1 2 3 4 5 6 7 8 9
-module(mon_pop3). -compile(export_all). %% %% Login = {login, "username", "password"} %% check(Host, Port, Login) -> check(Host, Port, Login, 10000).
...
-
1 2 3 4 5 6 7 8
-module(prog). -export([main/0]). main() -> F = fun(_, 0) -> 1; (Fun, N) -> N * Fun(Fun, N-1) end, Fact5 = F(F, 5), io:format("5! = ~p~n", [Fact5]).
-
1 2 3 4 5 6 7 8
-module(prog). -export([main/0]). main() -> F = fun(_, 0) -> 1; (Fun, N) -> N * Fun(Fun, N-1) end, Fact5 = F(F, 5), io:format("5! = ~p~n", [Fact5]).
-
1 2 3 4 5 6 7 8 9
(funcall (lambda (toi three xexp xx pred) (funcall (lambda (x) (map (quote (vector character)) (lambda (i) (funcall (lambda (x) (code-char (+ 48 x))) (ldb (byte (funcall toi (lambda (f) (lambda (x) (funcall f (funcall f (funcall f x)))))) i) x))) (funcall (lambda (x) (declare (special x)) (funcall (lambda (tf) (funcall (lambda (f) (funcall tf f)) (lambda (f) (funcall tf f)))) (lambda (f) (cons (funcall toi x) (unless (funcall (funcall x (lambda (x) nil)) t)
...
-
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 3 4 5 6 7 8 9
-module(prog). -export([main/0]). main() -> loop(). loop() -> case io:fread( "","~d" ) of eof -> true;
...
-
1 2 3 4 5
class Hello{ piblic static void main(String [] args){ System.out.println("Привет! это я сделал"); } }
-
1 2 3 4 5 6
-module(det). -export([calc/1]). calc(X) -> lists:nth(1, X) * ((lists: nth(5, X)) * (lists: nth(9, X)) - (lists: nth(6, X)) * (lists: nth(8, X))) - lists:nth(2, X) * ((lists: nth(4, X)) * (lists: nth(9, X)) - (lists: nth(6, X)) * (lists: nth(7, X))) + lists:nth(3, X) * ((lists: nth(4, X)) * (lists: nth(8, X)) - (lists: nth(5, X)) * (lists: nth(7, X))) .
-
1
-
1 2 3 4 5 6
-module(det). -export([calc/1]). calc(X) -> lists:nth(1, X) * ((lists: nth(5, X)) * (lists: nth(9, X)) - (lists: nth(6, X)) * (lists: nth(8, X))) - lists:nth(2, X) * ((lists: nth(4, X)) * (lists: nth(9, X)) - (lists: nth(6, X)) * (lists: nth(7, X))) + lists:nth(3, X) * ((lists: nth(4, X)) * (lists: nth(8, X)) - (lists: nth(5, X)) * (lists: nth(7, X))) .
-
1 2 3 4 5 6 7
-module(prog). -export([main/0]). qsort([P|T]) -> [X || X <- T, X < P] ++ [P] ++ [X || X <- T, X >= P]. main() -> qsort([2,3,4,1,5]).
-
1 2 3 4 5 6 7 8 9
-module(tree). -export([relation/1]). relation(Other) -> case Other of a-> Grandfather; b-> Grandmother; c-> Father; d-> Mother;
...
-
1 2 3 4 5 6 7 8 9
-module(tree). -export([relation/1]). relation(Other) -> case Other of a-> Grandfather; b-> Grandmother; c-> Father; d-> Mother;
...
-
1 2
Pill = blue. Pill.


