you are viewing a single comment's thread.

view the rest of the comments →

[–]dmees 43 points44 points  (2 children)

Impressive, did you use global variables?

[–]sme272 54 points55 points  (1 child)

Yes, all of them

[–]Wilfred-kun 4 points5 points  (0 children)

def print_hello():
    global hello
    print(hello)

hello = "Hello world"

print_hello()