1 | initial version |
You can do load(file.sage)
or attach(file.sage)
. Make sure to use a ".sage" suffix, so Sage will know to preparse it. See the tutorial for a bit more information.
2 | No.2 Revision |
You can do
or load(file.sage)load("file.sage")
. Make sure to use a ".sage" suffix, so Sage will know to preparse it. See the tutorial for a bit more information.attach(file.sage)attach("file.sage")