langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
1
Task/Empty-program/Nemerle/empty-program-1.nemerle
Normal file
1
Task/Empty-program/Nemerle/empty-program-1.nemerle
Normal file
|
|
@ -0,0 +1 @@
|
|||
null
|
||||
6
Task/Empty-program/Nemerle/empty-program-2.nemerle
Normal file
6
Task/Empty-program/Nemerle/empty-program-2.nemerle
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
module Program
|
||||
{
|
||||
Main() : void
|
||||
{
|
||||
}
|
||||
}
|
||||
1
Task/Empty-program/NetRexx/empty-program-1.netrexx
Normal file
1
Task/Empty-program/NetRexx/empty-program-1.netrexx
Normal file
|
|
@ -0,0 +1 @@
|
|||
class empty
|
||||
1
Task/Empty-program/NetRexx/empty-program-2.netrexx
Normal file
1
Task/Empty-program/NetRexx/empty-program-2.netrexx
Normal file
|
|
@ -0,0 +1 @@
|
|||
method main(args = String[]) static
|
||||
1
Task/Empty-program/NewLISP/empty-program.newlisp
Normal file
1
Task/Empty-program/NewLISP/empty-program.newlisp
Normal file
|
|
@ -0,0 +1 @@
|
|||
;
|
||||
1
Task/Empty-program/OCaml/empty-program.ocaml
Normal file
1
Task/Empty-program/OCaml/empty-program.ocaml
Normal file
|
|
@ -0,0 +1 @@
|
|||
;;
|
||||
5
Task/Empty-program/Objeck/empty-program.objeck
Normal file
5
Task/Empty-program/Objeck/empty-program.objeck
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
bundle Default {
|
||||
class Empty {
|
||||
function : Main(args : String[]) ~ Nil {
|
||||
}
|
||||
}
|
||||
3
Task/Empty-program/Objective-C/empty-program-1.m
Normal file
3
Task/Empty-program/Objective-C/empty-program-1.m
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
int main(int argc, const char **argv) {
|
||||
return 0;
|
||||
}
|
||||
12
Task/Empty-program/Objective-C/empty-program-2.m
Normal file
12
Task/Empty-program/Objective-C/empty-program-2.m
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
int main( int argc, const char *argv[] )
|
||||
{
|
||||
NSAutoreleasePool *pool;
|
||||
|
||||
pool = [[NSAutoreleasePool alloc] init];
|
||||
NSApp = [NSApplication sharedApplication];
|
||||
|
||||
[pool release];
|
||||
return 0;
|
||||
}
|
||||
0
Task/Empty-program/OxygenBasic/empty-program.oxy
Normal file
0
Task/Empty-program/OxygenBasic/empty-program.oxy
Normal file
0
Task/Empty-program/Oz/empty-program-1.oz
Normal file
0
Task/Empty-program/Oz/empty-program-1.oz
Normal file
1
Task/Empty-program/Oz/empty-program-2.oz
Normal file
1
Task/Empty-program/Oz/empty-program-2.oz
Normal file
|
|
@ -0,0 +1 @@
|
|||
unit
|
||||
4
Task/Empty-program/Oz/empty-program-3.oz
Normal file
4
Task/Empty-program/Oz/empty-program-3.oz
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
functor
|
||||
define
|
||||
skip
|
||||
end
|
||||
0
Task/Empty-program/PARI-GP/empty-program.pari
Normal file
0
Task/Empty-program/PARI-GP/empty-program.pari
Normal file
2
Task/Empty-program/PL-I/empty-program.pli
Normal file
2
Task/Empty-program/PL-I/empty-program.pli
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
s: proc options (main);
|
||||
end;
|
||||
3
Task/Empty-program/PL-SQL/empty-program.sql
Normal file
3
Task/Empty-program/PL-SQL/empty-program.sql
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
BEGIN
|
||||
NULL;
|
||||
END;
|
||||
4
Task/Empty-program/PSQL/empty-program.psql
Normal file
4
Task/Empty-program/PSQL/empty-program.psql
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
EXECUTE BLOCK
|
||||
AS
|
||||
BEGIN
|
||||
END
|
||||
4
Task/Empty-program/Pascal/empty-program-1.pascal
Normal file
4
Task/Empty-program/Pascal/empty-program-1.pascal
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
program ProgramName;
|
||||
|
||||
begin
|
||||
end.
|
||||
1
Task/Empty-program/Pascal/empty-program-2.pascal
Normal file
1
Task/Empty-program/Pascal/empty-program-2.pascal
Normal file
|
|
@ -0,0 +1 @@
|
|||
begin end.
|
||||
1
Task/Empty-program/Perl-6/empty-program-1.pl6
Normal file
1
Task/Empty-program/Perl-6/empty-program-1.pl6
Normal file
|
|
@ -0,0 +1 @@
|
|||
use v6;
|
||||
1
Task/Empty-program/Perl-6/empty-program-2.pl6
Normal file
1
Task/Empty-program/Perl-6/empty-program-2.pl6
Normal file
|
|
@ -0,0 +1 @@
|
|||
v6;
|
||||
1
Task/Empty-program/Perl-6/empty-program-3.pl6
Normal file
1
Task/Empty-program/Perl-6/empty-program-3.pl6
Normal file
|
|
@ -0,0 +1 @@
|
|||
6;
|
||||
1
Task/Empty-program/Pike/empty-program.pike
Normal file
1
Task/Empty-program/Pike/empty-program.pike
Normal file
|
|
@ -0,0 +1 @@
|
|||
int main(){}
|
||||
1
Task/Empty-program/Pop11/empty-program-1.pop11
Normal file
1
Task/Empty-program/Pop11/empty-program-1.pop11
Normal file
|
|
@ -0,0 +1 @@
|
|||
;;; This is a valid Pop11 program that does absolutely nothing.
|
||||
6
Task/Empty-program/Pop11/empty-program-2.pop11
Normal file
6
Task/Empty-program/Pop11/empty-program-2.pop11
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
compile_mode :pop11 +strict;
|
||||
define entry_point();
|
||||
enddefine;
|
||||
|
||||
#_TERMIN_IF DEF POPC_COMPILING
|
||||
entry_point();
|
||||
1
Task/Empty-program/PostScript/empty-program-1.ps
Normal file
1
Task/Empty-program/PostScript/empty-program-1.ps
Normal file
|
|
@ -0,0 +1 @@
|
|||
%!PS
|
||||
4
Task/Empty-program/PostScript/empty-program-2.ps
Normal file
4
Task/Empty-program/PostScript/empty-program-2.ps
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
%!PS-2.0
|
||||
% ...or...
|
||||
%!PS-3.0
|
||||
% etc
|
||||
1
Task/Empty-program/ProDOS/empty-program-1.dos
Normal file
1
Task/Empty-program/ProDOS/empty-program-1.dos
Normal file
|
|
@ -0,0 +1 @@
|
|||
IGNORELINE
|
||||
1
Task/Empty-program/ProDOS/empty-program-2.dos
Normal file
1
Task/Empty-program/ProDOS/empty-program-2.dos
Normal file
|
|
@ -0,0 +1 @@
|
|||
;
|
||||
0
Task/Empty-program/PureBasic/empty-program.purebasic
Normal file
0
Task/Empty-program/PureBasic/empty-program.purebasic
Normal file
1
Task/Empty-program/REBOL/empty-program.rebol
Normal file
1
Task/Empty-program/REBOL/empty-program.rebol
Normal file
|
|
@ -0,0 +1 @@
|
|||
REBOL []
|
||||
0
Task/Empty-program/Retro/empty-program-1.retro
Normal file
0
Task/Empty-program/Retro/empty-program-1.retro
Normal file
1
Task/Empty-program/Retro/empty-program-2.retro
Normal file
1
Task/Empty-program/Retro/empty-program-2.retro
Normal file
|
|
@ -0,0 +1 @@
|
|||
&bye is boot
|
||||
1
Task/Empty-program/SNOBOL4/empty-program.sno
Normal file
1
Task/Empty-program/SNOBOL4/empty-program.sno
Normal file
|
|
@ -0,0 +1 @@
|
|||
end
|
||||
3
Task/Empty-program/Seed7/empty-program.seed7
Normal file
3
Task/Empty-program/Seed7/empty-program.seed7
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
$ include "seed7_05.s7i";
|
||||
|
||||
const proc: main is noop;
|
||||
0
Task/Empty-program/Slate/empty-program.slate
Normal file
0
Task/Empty-program/Slate/empty-program.slate
Normal file
1
Task/Empty-program/Standard-ML/empty-program.ml
Normal file
1
Task/Empty-program/Standard-ML/empty-program.ml
Normal file
|
|
@ -0,0 +1 @@
|
|||
;
|
||||
1
Task/Empty-program/Suneido/empty-program.suneido
Normal file
1
Task/Empty-program/Suneido/empty-program.suneido
Normal file
|
|
@ -0,0 +1 @@
|
|||
function () { }
|
||||
1
Task/Empty-program/TUSCRIPT/empty-program.tuscript
Normal file
1
Task/Empty-program/TUSCRIPT/empty-program.tuscript
Normal file
|
|
@ -0,0 +1 @@
|
|||
$$ MODE TUSCRIPT
|
||||
0
Task/Empty-program/Trith/empty-program.trith
Normal file
0
Task/Empty-program/Trith/empty-program.trith
Normal file
1
Task/Empty-program/UNIX-Shell/empty-program-1.sh
Normal file
1
Task/Empty-program/UNIX-Shell/empty-program-1.sh
Normal file
|
|
@ -0,0 +1 @@
|
|||
#!/bin/sh
|
||||
1
Task/Empty-program/UNIX-Shell/empty-program-2.sh
Normal file
1
Task/Empty-program/UNIX-Shell/empty-program-2.sh
Normal file
|
|
@ -0,0 +1 @@
|
|||
#!/bin/bash
|
||||
1
Task/Empty-program/VBScript/empty-program.vbscript
Normal file
1
Task/Empty-program/VBScript/empty-program.vbscript
Normal file
|
|
@ -0,0 +1 @@
|
|||
'
|
||||
6
Task/Empty-program/VHDL/empty-program.vhdl
Normal file
6
Task/Empty-program/VHDL/empty-program.vhdl
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
entity dummy is
|
||||
end;
|
||||
|
||||
architecture empty of dummy is
|
||||
begin
|
||||
end;
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
Module General
|
||||
Sub Main()
|
||||
End Sub
|
||||
End Module
|
||||
7
Task/Empty-program/X86-Assembly/empty-program-1.x86
Normal file
7
Task/Empty-program/X86-Assembly/empty-program-1.x86
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
section .text
|
||||
global _start
|
||||
|
||||
_start:
|
||||
mov eax, 1
|
||||
int 0x80
|
||||
ret
|
||||
8
Task/Empty-program/X86-Assembly/empty-program-2.x86
Normal file
8
Task/Empty-program/X86-Assembly/empty-program-2.x86
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
.386
|
||||
.model flat, stdcall
|
||||
option casemap:none
|
||||
|
||||
.code
|
||||
start:
|
||||
ret
|
||||
end start
|
||||
1
Task/Empty-program/XQuery/empty-program.xquery
Normal file
1
Task/Empty-program/XQuery/empty-program.xquery
Normal file
|
|
@ -0,0 +1 @@
|
|||
.
|
||||
4
Task/Empty-program/XSLT/empty-program-1.xslt
Normal file
4
Task/Empty-program/XSLT/empty-program-1.xslt
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||
<!-- code goes here -->
|
||||
</xsl:stylesheet>
|
||||
1
Task/Empty-program/XSLT/empty-program-2.xslt
Normal file
1
Task/Empty-program/XSLT/empty-program-2.xslt
Normal file
|
|
@ -0,0 +1 @@
|
|||
<transform xmlns="http://www.w3.org/1999/XSL/Transform" version="1.0"/>
|
||||
3
Task/Empty-program/XSLT/empty-program-3.xslt
Normal file
3
Task/Empty-program/XSLT/empty-program-3.xslt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<transform xmlns="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||
<template match="/" />
|
||||
</transform>
|
||||
1
Task/Empty-program/XUL/empty-program.xul
Normal file
1
Task/Empty-program/XUL/empty-program.xul
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0"?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue