Today's Agenda:

Important Announcements:

import doomsday_device as dd

class Apocalypse:
	def __init__(self):
		self.schematics = "schematics.txt"
		self.response_plan = "response_plan.txt"
		self.snacks = ["chips", "popcorn", "dried_fruit"]
	def end_the_world_as_we_know_it():
		print("The end is near!")

if __name__ == "__main__":
	apocalypse = Apocalypse()
	apocalypse.end_the_world_as_we_know_it()