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 a = 42; function foo() { a = 5; print(a); //var a = 10; } foo();
-
1 2 3 4 5 6 7 8 9
//var a = 42; function foo() { a = 5; print(a); //var a = 10; } foo();
-
1 2 3 4 5 6 7 8 9
//var a = 42; function foo() { a = 5; print(a); //var a = 10; } foo();
-
1 2 3 4 5 6 7 8
//var a = 42; function foo() { print(a); //var a = 10; } foo();
-
1 2 3 4 5 6 7 8
var a = 42; function foo() { print(a); var a = 10; } foo();
-
1 2 3 4 5 6 7 8
var a = 42; function foo() { print(a); //var a = 10; } foo();
-
1 2 3 4 5 6 7 8 9
// Объект включающий в себя функционал по проверки типов переменных. var TypeOf = new (function() { { // Строковые представления JS-типов var m_number = (typeof 0); var m_object = (typeof {});
...
-
1 2 3 4 5 6 7 8 9
// Объект включающий в себя функционал по проверки типов переменных. var TypeOf = new (function() { { // Строковые представления JS-типов var m_number = (typeof 0); var m_object = (typeof {});
...
-
14 days 16 hours ago view (lines: 83, size: 4425, inputs: 5) JavaScript (spidermonkey) Success researcher
1 2 3 4 5 6 7 8 9
// ЦО 1927 // Кондрашов С.В. //Тема урока: //Практическая работа на закрепление базового материала по основам программирования //Цель работы: //На примере написания программы для нахождения корней квадратного уравнения // a*x^2 + b*x + c = 0 //- отработать навыки использования основных алгоритмических операций; //- научиться разбивать решение объемной задачи на ряд более простых,
...
-
1 2 3 4 5 6 7 8 9
TypeOf = new (function() { var m_number = (typeof 0); var m_object = (typeof {}); var m_string = (typeof ''); var m_boolean = (typeof true); var m_undefined = (typeof undefined); var m_function = (typeof (function(){}));
...
-
1 2 3 4 5 6 7 8 9
TypeOf = new (function() { var m_number = (typeof 0); var m_object = (typeof {}); var m_string = (typeof ''); var m_boolean = (typeof true); var m_undefined = (typeof undefined); var m_function = (typeof (function(){}));
...
-
1 2 3 4 5 6 7 8 9
TypeOf = new (function { var m_number = (typeof 0); var m_object = (typeof {}); var m_string = (typeof ''); var m_boolean = (typeof true); var m_undefined = (typeof undefined); var m_function = (typeof (function(){}));
...
-
1 2 3 4 5 6 7 8 9
var TypeOf = { Number : (typeof 0), Object : (typeof {}), String : (typeof ''), Boolean : (typeof true), Undefined : (typeof undefined), Function : (typeof (function(){})),
...
-
1 2 3 4 5 6 7 8 9
var TypeOf = { Number : (typeof 0), Object : (typeof {}), String : (typeof ''), Boolean : (typeof true), Undefined : (typeof undefined), Function : (typeof (function(){})),
...
-
1 2 3 4 5 6 7 8 9
var TypeOf= { Boolean: (typeof true), Number : (typeof 0), Undefined : (typeof undefined), Object : (typeof {}), String : (typeof ''), Function : (typeof (function(){})),
...
-
1 2 3 4 5 6 7 8 9
var TypeOf= { Array : (typeof Array), Number : (typeof 0), Undefined : (typeof undefined), Object : (typeof {}), String : (typeof ''), Function : (typeof (function(){})),
...
-
1 2 3 4 5 6 7 8 9
var TypeOf= { Number : (typeof 0), Undefined : (typeof undefined), Object : (typeof {}), String : (typeof ''), Function : (typeof (function(){})), };
...
-
1 2 3 4 5 6 7 8 9
var TypeOf= { Number : (typeof Number), Undefined : (typeof undefined), Object : (typeof {}), String : (typeof ''), Function : (typeof (function(){})), };
...
-
1 2 3 4 5 6 7 8
var TypeOf= { Undefined : (typeof undefined), Object : (typeof {}), String : (typeof ''), Function : (typeof (function(){})), };
...
-
1 2 3 4 5 6 7 8 9
var TypeOf= { Null : (typeof null), Undefined : (typeof undefined), Object : (typeof {}), String : (typeof ''), Function : (typeof (function(){})), };
...
-
1 2 3 4 5 6 7 8 9
var TypeOf= { Object : (typeof {}), String : (typeof ''), Function : (typeof (function(){})), }; print(TypeOf.Object);
...
-
1 2 3 4 5 6 7 8 9
var TypeOf= { String : (typeof ''), Function : (typeof (function(){})), }; print(TypeOf.String); print(TypeOf.Function);
-
1 2 3
while((num = readline()) != 42) { print(num); }
-
1 2 3 4 5 6 7 8 9
class sample { public static void main(String args[]) { try { int a=Integer.parseInt(args[0]); int b=Integer.parseInt(args[1]); int c = a + b;
...
-
1 2 3 4 5 6 7
abstract class print { abstract show(); } class display extends print { }
-
1 2 3 4 5 6 7 8 9
1 class factorial 2 { 3 public static void main(String args[]) 4 { 5 int n=0,fact=0; 6 for(int n=0;n>=1;n--) 7 fact=fact*1; 8 System.out.println(“Factorial of 5 is ”+fact); 9 }
-
1 2 3 4 5 6 7 8 9
class ifif { public static void main(String args[]) { int x=3, y=1,z=5; if(x>y) { if (z<=y) {
...
-
1 2 3 4 5 6 7 8 9
class ifif { public static void main(String args[]) { int x=3, y=1,z=5; if(x>y) { if (z<=y) {
...
-
1 2 3 4 5 6 7 8 9
1 class iftest 2 { 3 public static void main(String args[]) 4 { 5 int i=2; 6 if(i=2) { 7 System.out.println(“Correct”); } 8 else 9 System.out.println(“Incorrect”); }
...
-
1 2 3 4 5 6 7 8 9
1 class iftest 2 { 3 public static void main(String args[]) 4 { 5 int i=2; 6 if(i=2) 7 System.out.println(“Correct”); } 8 else 9 System.out.println(“Incorrect”); }
...


