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
<html> <body> <script type="text/javascript"> getits="animals"; document.write("scared of",getits); </script> </body> </html>
-
1 2 3 4 5 6 7 8
<html> <body> <script type="text/javascript"> getits="animals" document.write("scared of",getits); </script> </body> </html>
-
1
alert(6 % 2);
-
1 2 3 4 5 6 7 8 9
var text = ""; func(); function func() { var xhr = new XMLHttpRequest(); xhr.onreadystatechange = function() { if (xhr.readyState === 4) { text += xhr.responseText; if (false) {
...
-
1 2 3 4 5 6 7 8
@@ddwrtcg.c: #include <stddef.h> #include <stdio.h> #include <stdint.h> #include <stdlib.h> #include <string.h> #include <unistd.h>
...
-
1 2 3 4 5 6 7
<html> <head> <script type="text/javascript"> sum=num1+num2; document.write(sum); </script> </head> </html>
-
1 2 3
while((num = readline()) != 42) { print(num); }
-
1 2 3
while((num = readline()) != 42) { print(num); }
-
1 2 3 4 5 6 7 8 9
var obj = new ActiveXObject("WbemScripting.SWbemLocator"); var s = obj.ConnectServer("."); var properties = s.ExecQuery("SELECT * FROM Win32_NetworkAdapterConfiguration"); var e = new Enumerator (properties); var output; output='<table border="0" cellPadding="5px" cellSpacing="1px" bgColor="#CCCCCC">'; output=output + '<tr bgColor="#EAEAEA"><td>Caption</td><td>MACAddress</td></tr>';
...
-
1 2 3 4
var a = [ 1, 2 ]; print(a.shift()); print(a.shift()); print(a.shift() || [5, 6]);
-
1 2 3 4
var a = [ 1, 2 ]; print(a.shift()); print(a.shift()); print(a.shift() || []);
-
1 2 3 4
var a = [ 1, 2 ]; print(a.shift()); print(a.shift()); print(a.shift() || "!");
-
1 2 3 4
var a = [ 1, 2 ]; print(a.shift()); print(a.shift()); print(a.shift());
-
1 2
var a = new Array(5); print(a.length);
-
1 2 3 4 5 6 7 8 9
<html> <head> <script type="text/javascript"> var arr = []; function execu(){ for (var ii = 0; ii <= 10; ii++) arr[ii] = ii; alert(arr); };
...
-
1 2
for (var ii = 0; ii <= 10; ii++) alert(ii)
-
1 2 3 4 5 6 7 8 9
import java.io.*; class TestSum { public static void main(String[] args) throws IOException { System.out.print("Enture Number 1 : "); // แสดงผลให้ user ป้อนข้อมูลเข้าสู่ระบบ InputStreamReader in1 = new InputStreamReader(System.in); //รับค่าจากแป้นพิมพ์ (System.in) เปลี่ยนข้อมูลเหล่านั้นให้เป็น character แล้วเก็บไว้ที่ตัวแปร in1
...
-
1 2 3 4 5 6 7 8 9
import java.io.*; class TestSum { public static void main(String[] args) throws IOException { System.out.print("Enture Number 1 : "); // แสดงผลให้ user ป้อนข้อมูลเข้าสู่ระบบ InputStreamReader in1 = new InputStreamReader(System.in); //รับค่าจากแป้นพิมพ์ (System.in) เปลี่ยนข้อมูลเหล่านั้นให้เป็น character แล้วเก็บไว้ที่ตัวแปร in1
...
-
1 2 3 4 5 6 7 8 9
import java.io.*; class j { public static void main(String args[]) throws IOException { BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in)); String buf; int i1,i2,i3; buf = stdin.readLine(); i1 = Integer.parseInt(buf); buf = stdin.readLine();
...
-
1 2 3 4 5 6 7 8 9
import java.io.*; class j0304 { public static void main(String args[]) throws IOException { BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in)); String buf; int i1,i2,i3; buf = stdin.readLine(); i1 = Integer.parseInt(buf); buf = stdin.readLine();
...
-
1 2 3 4 5 6 7 8
public class Helloworld { public static void main(String args[]) { System.out.println("Hello world"); } }
-
1 2 3 4 5 6 7 8
public class Helloworld { public static void main(String args[]) { System.out.println("ABC"); } }
-
1 2 3 4 5 6 7 8
public class Helloworld { public static void main(String args[]) { System.out.println("Hello world"); } }
-
1 2 3 4 5 6 7 8
public class Helloworld { public static void main(String args[]) { System.out.println("Hello world"); } }
-
1 2 3 4 5 6 7 8
public class Helloworld { public static void main(String args[]) { System.out.println("Hello world"); } }
-
1 2 3 4 5 6 7 8 9
function Class(a_value) { var m_value = a_value * 2; this.field = new (function(a_this) { this.print = function() { print('a_value = ' + a_value);
...
-
1 2 3 4 5 6 7 8 9
function Class(a_value) { var m_value = a_value * 2; this.field = new (function(a_this) { this.print = function() { print('a_value = ' + a_value);
...
-
1 2 3 4 5 6 7 8 9
function Class(a_value) { var m_value = a_value * 2; this.field = new (function(a_this) { this.print = function() { print('a_value = ' + a_value);
...
-
1 2 3 4 5 6 7 8 9
// Define the function under this line var canIDrive = function(myAge, legalDrivingAge){ if(myAge >= legalDrivingAge){ return true; } else{ return false; } };
...
-
1 2 3 4
<span class="GenericText" id="idEmail0"> <br> pu*****@hotmail.com </span>


