/**
 * First class in Halting Problem proof.
 *   @author Dave Reed
 *   @version 4/1/18
 */
public class HP1 {
    // Returns true if the program in filename terminates when run on input
    public static Boolean haltsOn(String filename, String input) {
        return false;
    } 
}
