public class FactorQuadratic {
	
	public static void main(String[] args) {
		
		//model class:  represent eqn & contain method to find factors
		QuadraticEqn eqn = new QuadraticEqn();
		//  note:  by creating this object here, we could potentially set 
		//  starting values for a, b, c before building the initial UI... 
		
		//view + controller needs an eqn for which to set a, b, and c
		//and to ask for factored result
		new FactorQuadraticUI(eqn);
		
	}
	
}