/* Program: CRAZY.C Author : Kim Moser Date : 5 November, 1989 System : IBM PC / Borland Turbo-C 2.0 Descrip: Nothing in particular */ #include #define OpenBrace { #define CloseBrace } #define OpenBracket [ #define CloseBracket ] #define OpenParenthesis ( #define CloseParenthesis ) #define NoReturnType void #define NoParameter NoReturnType #define MainFunction main #define Semicolon ; #define FunctionPrototype #define ActualFunction #define PointerTo(atype) atype* #define OutputToStdout(astring) printf(astring) #define IsEqualTo = FunctionPrototype NoReturnType MainFunction OpenParenthesis NoParameter CloseParenthesis Semicolon ActualFunction NoReturnType MainFunction OpenParenthesis NoParameter CloseParenthesis OpenBrace PointerTo(char) string IsEqualTo "Now is the time for all good men, etc.\n" Semicolon OutputToStdout(string) Semicolon CloseBrace