2021-09-28 14:27:25 +10:00

26 lines
333 B
Java

import java.util.*;
import java.io.*;
public class P1 {
/**
* COMP2240 Assignment 2
* Date:
* Author: Zach S-B
* Student Number: c3262201
*/
/**
* Main. Runs the program
*/
public static void main(String[] args){
P1 system = new P1();
system.run();
}
public void run()
{
}
}