1 | initial version |
If result.sage is calling add function from addition.sage, you need to load that file in result.sage.
You can also load the file without giving the path, if you type the following two lines in the beginning of the notebook
import sys
sys.path.append('path-to-module')