Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 624 Bytes

File metadata and controls

24 lines (17 loc) · 624 Bytes

Autograder For Project 8 Virtual Machine II

Submission Requirements

Setup

Each submitted project should contain a bash script named setup.sh that is responsible for building the executable.

Some languages, such as python, will not need to build anything, but should still contain an empty setup.sh file.

Executable

The executable should be named VMTranslator.

For interpreted languages, such as python, where your program cannot be built into an executable, use a bash script to call their program passing through any arguments.

Python Example:

#!/bin/bash

python3 VMTranslator.py $@