-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject3.cpp
More file actions
30 lines (26 loc) · 937 Bytes
/
Copy pathProject3.cpp
File metadata and controls
30 lines (26 loc) · 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
// Created by Will on 12/5/2019.
//
/*******************************************************************************
* File name: Project2.cpp *
* Project: CS 460 Project 2 Fall 2019 *
* Author(s): Dr. Watts *
* Date: Fall 2019 *
* Description: This file contains the driver program for Project 2. *
*******************************************************************************/
#include <cstdlib>
#include <iostream>
#include <iomanip>
#include "SetLimits.h"
#include "SyntacticalAnalyzer.h"
int main (int argc, char * argv[])
{
if (argc < 2)
{
printf ("format: %s <filename>\n", argv[0]);
exit (1);
}
SetLimits ();
SyntacticalAnalyzer parse (argv[1]);
return 0;
}