/*
 * This is not intended to be used for grading the assignment. It's just
 * there so you can see what this component does in isolation.
 */

#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>

#include "myname.h"
#include "token.h"
#include "scanner.h"


#define MYNAME 0


int main (int argc, char **argv) {
  myname = argv[MYNAME];

  scanner(stdin, stdout);

  exit(EXIT_SUCCESS);
}

