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
with Ada.Text_IO; procedure test is use Ada.Text_IO; type C_Int is new Integer range 0..2**32-1; A : C_Int := 500_000_000; B : C_Int := 2; begin if (A + 4_000_000_000 > B) then
...
-
1 2 3 4 5 6 7 8 9
with Ada.Text_IO; procedure test is use Ada.Text_IO; type C_Int is new Integer range 0..10; A : C_Int := 500_000_000; B : C_Int := 2; begin if (A + 4_000_000_000 > B) then
...
-
1 2 3 4 5 6 7 8 9
with Ada.Text_IO; procedure test is use Ada.Text_IO; type C_Int is new Integer range 0..10; A : C_Int := 8; B : C_Int := 2; begin if (A + 3 > B) then
...
-
1 2 3 4 5 6 7 8 9
with Ada.Text_IO; procedure test is use Ada.Text_IO; type C_Int is Integer range 0..10; A : C_Int := 8; B : C_Int := 2; begin if (A + 3 > B) then
...
-
1 2 3 4 5 6 7
with Ada.Text_IO; procedure test is use Ada.Text_IO; begin put("Hello World"); end test;
-
1 2 3 4 5 6 7
with Ada.Text_IO; procedure test is use Ada.Text_IO; begin puts("Hello World"); end test;
-
1 2 3 4 5 6 7
with Ada.Text_IO; procedure test is use Text_IO; begin puts("Hello World"); end test;
-
1 2 3 4 5 6 7
with Ada.Text_IO; procedure test is use Text_IO; begin puts("Hello World"); end test
-
1 2 3 4 5 6
with Ada.Text_IO; procedure test is begin puts("Hello World"); end test
-
1 2 3 4 5
with Ada.Text_IO procedure test puts("Hello World"); end test
-
1 2 3 4 5 6 7
with Ada.Text_IO; use Ada.Text_IO; procedure Euler44 is begin put_line("tere"); end Euler44;
-
1 2 3 4 5 6 7 8 9
with Ada.Integer_Text_Io, Ada.Text_Io; use Ada.Integer_Text_Io, Ada.Text_Io; procedure Test is subtype Small is Integer range 0..99; Input : Small; begin loop Get(Input);
...
-
1 2 3 4 5 6 7 8 9
with Ada.Integer_Text_Io, Ada.Text_Io; use Ada.Integer_Text_Io, Ada.Text_Io; procedure Test is subtype Small is Integer range 0..99; Input : Small; begin loop Get(Input);
...
-
1 2 3 4 5 6 7 8 9
with Ada.Text_IO, Ada.Integer_Text_IO; use Ada.Text_IO, Ada.Integer_Text_IO; procedure prog is num : INTEGER; num1 : INTEGER; total : INTEGER; begin
...
-
1 2 3 4 5 6 7 8 9
with Ada.Text_IO, Ada.Integer_Text_IO; use Ada.Text_IO, Ada.Integer_Text_IO; procedure prog is num : INTEGER; num1 : INTEGER; total : INTEGER; begin
...
-
1 2 3 4 5 6 7 8 9
with Ada.Text_IO, Ada.Integer_Text_IO; use Ada.Text_IO, Ada.Integer_Text_IO; procedure prog is num : INTEGER; num1 : INTEGER; total : INTEGER; begin
...
-
1 2 3 4 5 6 7 8 9
with Ada.Text_IO, Ada.Integer_Text_IO; use Ada.Text_IO, Ada.Integer_Text_IO; procedure prog is num : INTEGER; num1 : INTEGER; total : INTEGER; begin
...
-
1 2 3 4 5 6 7 8 9
with Ada.Text_IO, Ada.Integer_Text_IO; use Ada.Text_IO, Ada.Integer_Text_IO; procedure prog is num : INTEGER; num1 : INTEGER; total : INTEGER; begin
...
-
1 2 3 4 5 6 7 8 9
with Ada.Text_IO, Ada.Integer_Text_IO; use Ada.Text_IO, Ada.Integer_Text_IO; procedure prog is num : INTEGER; num1 : INTEGER; total : INTEGER; begin
...
-
1 2 3 4 5 6 7 8 9
with Ada.Text_IO, Ada.Integer_Text_IO; use Ada.Text_IO, Ada.Integer_Text_IO; procedure prog is num : INTEGER; num1 : INTEGER; begin
...
-
1 2 3 4 5 6 7 8 9
WITH Ada.Text_IO; USE Ada.Text_IO; WITH Ada.Integer_Text_IO; USE Ada.Integer_Text_IO; PROCEDURE main IS num : Integer; num1 : Integer;
...
-
1 2 3 4 5 6 7 8 9
WITH Ada.Text_IO; USE Ada.Text_IO; WITH Ada.Integer_Text_IO; USE Ada.Integer_Text_IO; PROCEDURE main IS num : Integer; num1 : Integer;
...
-
1 2 3 4 5 6 7 8 9
WITH Ada.Text_IO; WITH Ada.Integer_Text_IO; PROCEDURE main IS num : Integer; num1 : Integer; BEGIN
...
-
1 2 3 4 5 6 7 8 9
WITH Ada.Text_IO; WITH Ada.Integer_Text_IO; PROCEDURE main IS num : Integer num1 : Integer BEGIN
...
-
1 2 3 4 5 6 7 8 9
with Ada.Integer_Text_Io, Ada.Text_Io; use Ada.Integer_Text_Io, Ada.Text_Io; procedure Test is subtype Small is Integer range 0..99; Input : Small; begin loop Get(Input);
...
-
1 2 3 4 5 6 7 8 9
with Ada.Text_IO;use Ada.Text_IO; procedure Hello is begin Put_Line("Hello, world!"); New_Line; Put_Line("Listening to Kondor? Maybe Blazo?"); end Hello;
-
1 2 3 4 5 6 7 8 9
with Ada.Text_IO; procedure Hello is package IO renames Ada.Text_IO; begin IO.Put_Line("Hello, world!"); IO.New_Line; IO.Put_Line("Listening to Kondor? Maybe Blazo?"); end Hello;
-
1 2 3 4 5 6 7 8
with Ada.Text_IO; procedure Hello is package IO renames Ada.Text_IO; begin IO.Put_Line("Hello, world!"); end Hello;
-
1 2 3 4 5 6 7
with Ada.Text_IO; procedure Hello is begin Ada.Text_IO.Put_Line("Hello, world!"); Ada.Text_IO.Get_Line(); end Hello;
-
1 2 3 4 5 6 7
with Ada.Text_IO; procedure Hello is begin Ada.Text_IO.Put_Line("Hello, world!"); Ada.Text_IO.Get_Line("Enter!!!!"); end Hello;


