Time for an 2014 update…

This commit is contained in:
Ingy döt Net 2014-01-17 05:32:22 +00:00
parent 372c577f83
commit 09687c4926
2520 changed files with 34227 additions and 7318 deletions

View 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(){}

View file

@ -1 +1 @@
/* empty */
/*comment*/

View file

@ -1 +1 @@
/* REXX */
/*REXX*/

View file

@ -0,0 +1 @@
/*this REXX program calculates if a date is a workday for the XYZ Company.*/

View file

@ -0,0 +1 @@
fn main(){}