#include "async.h"

int
main(int argc, char *argv[])
{
  async_init();
  strbuf foo;
  foo << "Hello, ";
  foo << "World!\n";
  warn << foo;
}
