Lest the whole program be smitten with a curse.

class ParseNode:
    def __init__(self, name):
        self.name = name
        self.parent = None
        self.children = []

    def spirit_of_elijah(self):
        for child in self.children:
            child.parent = self
            child.spirit_of_elijah()
This entry was posted in Uncategorized. Bookmark the permalink.

4 Responses to Lest the whole program be smitten with a curse.

  1. Emily says:

    I am confused, usually not hard to do though.

  2. Joshua says:

    Show it to Matt and see if he thinks it is funny.

  3. Mallory says:

    Thumbs down for computer science jokes. It’s not even funny.

  4. Joshua says:

    It really made me happy when I wrote it down.

Leave a Reply

Your email address will not be published. Required fields are marked *