view src/c/driver.c @ 109:813e5a52063d

Remove closure conversion in favor of zany fun with modules, which also replaces 'page'
author Adam Chlipala <adamc@hcoop.net>
date Sun, 13 Jul 2008 10:17:06 -0400
parents 5f04adf47f48
children c5d7ce9ddd57
line wrap: on
line source
void lw_handle(void);

int main() {
  puts("<html>");
  lw_handle();
  puts("</html>");
  return 0;
}