To remove all side-effects: del sys.modules['foobody']
deffoo
eval File.read "foobody.txt"end
File foobody.txt will be read and evaluated at runtime. Using eval will make the final value of foobody.txt available to be returned by foo. Using load or require will not.