OuterSoda

175
reputation
8
class OuterSoda {
    public Language[] favorite_langauges = ["Java", "Python", "C#", "C++", "JavaScript"];
    public Game[] favorite_games = ["Minecraft", "Hollow Knight", "KSP"];
    public Food favorite_food = new Food(
                                             name="Ratatouille",
                                             cut_type="round",
                                             vegetables=["Zucchini", "Eggplant"]
                                         );

    public static boolean isBookInteresting(title, author, genre) {
        if (["Andy Weir", "Blake Crouch"].contains(author)) {
            return true;
        } else if (["Science Fiction, Fantasy"].contains(genre)) {
            return true;
        } else {
            return false;
        }
    }

}