Posted 06 September 2013 - 07:19 PM
Hello. I want to know how I can do this:
file1
And no, I don't want file2 to be this:
file1
function bar()
print("World!")
end
file2
function foo()
print("Hello")
end
foo()
bar()
And no, I don't want file2 to be this:
os.loadAPI("file1")
function foo()
print("Hello")
end
foo()
file1.bar()