/* CSE 333 Su12 Lecture 6 demo: cpp_example.c */
/* Gribble/Perkins */

/* C preprocessor demo */

#define FOO 1

#include "cpp_example.h"

int main(int argc, char **argv) {
  int x = FOO;  // a comment
  int y = BAR;
  verylong z = FOO + BAR;
  return 0;
}