package balancing;

public class CheckBalanced {

	// return true if given string has balanced symbols; 
	// return false otherwise
	
	public static boolean checkBalanced(String javaProgram) {
		...
	}
	
}
