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
var AClass = function(a) { this.a = a; }; AClass.a = -1; AClass.prototype.printClass = function() { console.log(this.a, AClass.a); }; AClass.prototype.set = function(a) {
...
-
1 2 3 4 5 6
public class X{ public static void main(String[] args){ String x = "" + 2 + 3; System.out.println(x); } }
-
1
print -5 % 2
-
1 2
{}+{}
-
1 2
[]+{}
-
1 2
[]+[]
-
1
<a class="webkit-html-attribute-value webkit-html-resource-link" target="_blank" href="http://www.ilive.to/embed/24176&width=700&height=480&autoplay=true">http://www.ilive.to/embed/24176&width=700&height=480&autoplay=true</a>
-
1
<script type="text/javascript" src="http://www.ilive.to/embed/24176&width=700&height=480&autoplay=true"></script>
-
1 2
function a() { }
-
1
alert("zhops!!!");
-
1 2 3 4 5 6 7 8 9
/ clasa Punct modeleaza un punct din spatiu class Punct{ /* entends Object */ // variabilele clasei private double x, y, z; public static int numarPuncte = 0; // constructori public Punct(){ x = y = z = 0;
...
-
1 2 3 4 5 6 7 8 9
/ clasa Punct modeleaza un punct din spatiu class Punct{ /* entends Object */ // variabilele clasei private double x, y, z; public static int numarPuncte = 0; // constructori public Punct(){ x = y = z = 0;
...
-
1 2 3 4 5 6 7 8 9
function (input) { var output = ""; var chr1, chr2, chr3; var enc1, enc2, enc3, enc4; var i = 0; input = input.replace(/[^A-Za-z0-9\+\/\=]/g, ""); while (i < input.length) {
...
-
1
-
1 2 3 4 5 6 7 8 9
{code style="brush: vb;"} sk = 0 For n1 = 1 To 6 For n2 = 1 To 6 For n3 = 1 To 6 For n4 = 1 To 6 For n5 = 1 To 6 For n6 = 1 To 6 If n6 = n5 Or n6 = n4 Or n6 = n3 Or n6 = n2 Or n6 = n1 _
...
-
1 2 3 4 5 6 7 8 9
<!DOCTYPE HTML> <html lang="ja-JP"> <head> <meta charset="UTF-8"> <title>歯抜けを特定</title> <hta:application border = "dialog" borderstyle = "normal" contextmenu = "no"
...
-
1 2 3 4 5 6 7 8 9
<!DOCTYPE HTML> <html lang="ja-JP"> <head> <meta charset="UTF-8"> <title>歯抜けを特定</title> <hta:application border = "dialog" borderstyle = "normal" contextmenu = "no"
...
-
1
alert(1);
-
1 2 3 4 5 6 7 8 9
...
-
1 2 3 4 5 6 7 8 9
package javaapplication1 ; public class Main { public static void main ( String[ ] args ) { String strOb1 = "First String" ; String strOb2 = "Second String" ; String strOb3 = strOb1 ; System.out.println ( strOb1.length( ) ) ;
...
-
1 2 3 4 5 6 7 8 9
import sample.* ; public class NewClass { static Sample S = new Sample ( ) ; public static void main ( String args[ ] ) { System.out.print ( "Main outside the package " ) ; } }
...
-
1 2 3 4 5 6 7 8 9
public class Main { public static void main ( String[ ] args ) { int x ; x = 10 ; if ( x == 10 ) { int y = 20 ;
...
-
1 2 3 4 5 6 7 8
public class Main { public static void main ( String[ ] args ) { int v = 144, w = 157, x = 128 ; System.out.print ( ( v << 2 | w << 4 & x ) + " " + ( w >> 3 & x << 2 ^ v ) ) ; } }
-
1 2 3 4 5 6 7 8 9
// my first program in C++ #include <iostream> using namespace std; int main () { cout << "Hello World!"; return 0;
-
1 2 3 4 5 6 7 8 9
var pat = /<(?:\/(?=[A-Za-z_:][\w:.-]*\s*>)|[A-Za-z_:][\w:.-]*(?:\s(?:".*?"|'.*?'|[^>])*?)?\s*\/(?=[>]))/g; var html = 'this is <tag attrs= \'asdf\' asdf /> some <tag1 /> and more </tag2 > <a href="http://example.org" />'; var match; print (pat + "\n---------\n"); while ( (match = pat.exec(html)) != null ) { print (match[0]);
...
-
1 2 3 4 5 6 7 8 9
var pat = /<(?:\/(?=[A-Za-z_:][\w:.-]*\s*>)|[A-Za-z_:][\w:.-]*(?:\s(?:".*?"|'.*?'|[^>])*?)?\s*\/(?=>))/g; var html = 'this is <tag attrs= \'asdf\' asdf /> some <tag1 /> and more </tag2 > <a href="http://example.org" />'; var match; print (pat + "\n---------\n"); while ( (match = pat.exec(html)) != null ) { print (match[0]);
...
-
1 2 3 4 5 6 7 8 9
var pat = /<(?:\/(?=[A-Za-z_:][\w:.-]*\s*>)|[A-Za-z_:][\w:.-]*(?:\s(?:".*?"|'.*?'|[^>])*?)?\s*\/(?=>))/g; var html = 'this is <tag attrs= \'asdf\' asdf /> some <tag1 /> and more </tag2 > <a href="http://example.org" />'; var match; print (pat + "\n---------\n"); while ( (match = pat.exec(html)) != null ) { print (match[0]);
...
-
1 2 3 4 5 6 7 8 9
var pat = /<(?:\/(?=[A-Za-z_:][\w:.-]*\s*>)|[A-Za-z_:][\w:.-]*(?:\s(?:".*?"|'.*?'|[^>])*?)?\s*\/(?=>))/g; var html = 'this is <tag attrs= \'asdf\' asdf /> some <tag1 /> and more </tag2 > <a href="http://example.org" />'; var match; print ( pat + "\n---------"); while ( (match = pat.exec( html )) != null ) { print ( match[0] + "\n" );
...
-
1 2 3 4 5 6 7 8 9
var pat = /<(?:\/(?=[A-Za-z_:][\w:.-]*\s*>)|[A-Za-z_:][\w:.-]*(?:\s(?:".*?"|'.*?'|[^>])*?)?\s*\/(?=>))/g; var results = []; var match; print ( pat + "\n"); while ( (match = pat.exec( "me <tag1 /> and more </tag2 > <a href=\"http://example.org\" >" )) != null ) { print ("yes\n");
...
-
1 2 3 4 5 6 7 8 9
var pat = /<(?:\/(?=[A-Za-z_:][\w:.-]*\s*)|[A-Za-z_:][\w:.-]*(?:\s(?:".*?"|'.*?'|[^>])*?)?\s*\/(?=>))>/g; var results = []; var match; print ( pat + "\n"); while ( (match = pat.exec( "me <tag1 /> and more </tag2 > <a href=\"http://example.org\" >" )) != null ) { print ("yes\n");
...


