Instant Hacking
Learn how to program with Python

Side Effects

    # The *wrong* way of doing it
    age = 0

    def setAge(a):
        age = a

    setAge(100)
    print age
    # Prints "0"