Time for an 2014 update…
This commit is contained in:
parent
372c577f83
commit
09687c4926
2520 changed files with 34227 additions and 7318 deletions
0
Task/Empty-program/BASIC/empty-program-3.basic
Normal file
0
Task/Empty-program/BASIC/empty-program-3.basic
Normal file
|
|
@ -1,11 +1 @@
|
|||
int main ( int /*argc*/, char * * /*argv*/ )
|
||||
{
|
||||
// Unused arguments should not be named
|
||||
// There are variations:
|
||||
// 1: main ''may'' explicitly return a value
|
||||
// (other non-void-returning C++ functions ''must'' do so,
|
||||
// but there's a special exception for main that falling off it
|
||||
// without an explicit return is equivalent to a "return 0;" at
|
||||
// the end of the main function)
|
||||
// 2: The arguments may be omitted entirely
|
||||
}
|
||||
int main(){}
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
/* empty */
|
||||
/*comment*/
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
/* REXX */
|
||||
/*REXX*/
|
||||
|
|
|
|||
1
Task/Empty-program/REXX/empty-program-4.rexx
Normal file
1
Task/Empty-program/REXX/empty-program-4.rexx
Normal file
|
|
@ -0,0 +1 @@
|
|||
/*this REXX program calculates if a date is a workday for the XYZ Company.*/
|
||||
1
Task/Empty-program/Rust/empty-program.rust
Normal file
1
Task/Empty-program/Rust/empty-program.rust
Normal file
|
|
@ -0,0 +1 @@
|
|||
fn main(){}
|
||||
Loading…
Add table
Add a link
Reference in a new issue