I'm getting an error message quoting that I have a syntax error when trying to load my functions. I can load them one at a time into the IDLE, but when pasting the full script, an error is returned. I believe its to do with the second function calling the first. To test this, the simple code below also returns this error :(.
def hello():
print('Hello there!')
def boo():
hello()
I'm unsure why this happens because the first function is defined before its called in the second. So it should be loaded in memory already shouldn't it?
Thanks for any help you can give. :)