public class MovieTester {
    public static void main(String args[]) {
		Movie	aMovie, anotherMovie;

		aMovie = Movie.example1();
		anotherMovie = Movie.example2();
		System.out.println(aMovie);
		System.out.println("is a " + aMovie.getType() + 
			   				" with actors " + aMovie.getActors());
		System.out.println(anotherMovie);
		System.out.println("is a " + anotherMovie.getType() + 
			   				" with actors " + anotherMovie.getActors());
    }
}