CoffeScript

C code posted
created at 06 Sep 19:13, updated at 06 Sep 19:16

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# include <stdio.h>
# include <stdlib.h>

# include <stdbool.h>


# define nil NULL // no caps

# define real true
# define fake false // fake is shorter

# define exit_success 0
# define exit_error   1

# define leave ( status ) return status;

int main ( int argc, char *argv[] ) {

    if ( argc < 2 ) {
        printf ( "usage `%s [options]'", argv[0] );
        printf ( "try `%s --help' for details", argv[0] );
        leave ( exit_success );
    }

    /* stuff */

    leave ( exit_success );

}
534 Bytes in 2 ms with coderay