September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
7
Task/Empty-program/EC/empty-program.ec
Normal file
7
Task/Empty-program/EC/empty-program.ec
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
class EmptyApp : Application
|
||||
{
|
||||
void Main()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
6
Task/Empty-program/ESQL/empty-program.esql
Normal file
6
Task/Empty-program/ESQL/empty-program.esql
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
CREATE COMPUTE MODULE ESQL_Compute
|
||||
CREATE FUNCTION Main() RETURNS BOOLEAN
|
||||
BEGIN
|
||||
RETURN TRUE;
|
||||
END;
|
||||
END MODULE;
|
||||
|
|
@ -1,3 +1,3 @@
|
|||
#symbol program =
|
||||
program =
|
||||
[
|
||||
].
|
||||
|
|
|
|||
4
Task/Empty-program/Elm/empty-program.elm
Normal file
4
Task/Empty-program/Elm/empty-program.elm
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
--Language prints the text in " "
|
||||
import Html
|
||||
main =
|
||||
Html.text"empty"
|
||||
1
Task/Empty-program/Inform-7/empty-program.inf
Normal file
1
Task/Empty-program/Inform-7/empty-program.inf
Normal file
|
|
@ -0,0 +1 @@
|
|||
X is a room
|
||||
1
Task/Empty-program/Jq/empty-program.jq
Normal file
1
Task/Empty-program/Jq/empty-program.jq
Normal file
|
|
@ -0,0 +1 @@
|
|||
empty
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
functor
|
||||
define
|
||||
skip
|
||||
end
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
#!/usr/bin/perl
|
||||
# A program without a body will work too
|
||||
|
|
@ -1 +0,0 @@
|
|||
#!/usr/bin/perl
|
||||
1
Task/Empty-program/PlainTeX/empty-program.tex
Normal file
1
Task/Empty-program/PlainTeX/empty-program.tex
Normal file
|
|
@ -0,0 +1 @@
|
|||
\bye
|
||||
|
|
@ -1 +0,0 @@
|
|||
/**/
|
||||
|
|
@ -1 +0,0 @@
|
|||
/*REXX*/
|
||||
|
|
@ -1 +0,0 @@
|
|||
/*this REXX program calculates if a date is a workday for the XYZ Company.*/
|
||||
3
Task/Empty-program/Stata/empty-program-1.stata
Normal file
3
Task/Empty-program/Stata/empty-program-1.stata
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
program define nop
|
||||
version 15
|
||||
end
|
||||
2
Task/Empty-program/Stata/empty-program-2.stata
Normal file
2
Task/Empty-program/Stata/empty-program-2.stata
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
function nop() {
|
||||
}
|
||||
1
Task/Empty-program/UNIX-Shell/empty-program-3.sh
Normal file
1
Task/Empty-program/UNIX-Shell/empty-program-3.sh
Normal file
|
|
@ -0,0 +1 @@
|
|||
#!/bin/ksh
|
||||
2
Task/Empty-program/Zkl/empty-program.zkl
Normal file
2
Task/Empty-program/Zkl/empty-program.zkl
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
c:=Compiler.Compiler.compileText("");
|
||||
c() //--> Class(RootClass#)
|
||||
Loading…
Add table
Add a link
Reference in a new issue