''' DS2500 Spring 2025 Sample code from lecture - making Food objects and making sure it works Add more restaurant ideas! https://bit.ly/food_recs ''' from food import Food def main(): # create a couple of food objects bgood = Food("B.Good", 2, "American?") tacobell = Food("Taco Bell", 1, "Mexican-ish") # We'll know our __eq__ method works if obj1 == obj2 is correct :) # We'll know our __str__ method works if our objects print out all nice if bgood == tacobell: print(f"{bgood} is the same thing as {tacobell}") else: print(f"{bgood} and {tacobell} are different!") if __name__ == "__main__": main()