wp-chili-test

// this is a syntax highlighting test
#include <stdio.h>
#define BLAH "blah"
const float pi = 3.14;  /* yum */
typedef struct Foo {
    char * bar;
} Foo;
void nothing() {
    int useless;  // test
}
/* this is a comment
 * yay */
int main() {
    char * message = "hello world\n";
    printf(message);
    nothing();
    for( int i = 0; i < 5; i  ) {
        fprintf(stderr, "%i\n", i);
        break;
    }
    return null;
}