If you have 2 Python files in the same directory, you can do the following:
something.py
def returnSomething():
return True
index.py
from something import returnSomething
test=returnSomething()
Can something similar be done in Nim by calling their proc
s?