package ce325.homework1; public class Test { String test; public Test(String s) { test = s; } public String toString() { return test; } }