Open danilopedraza opened 1 month ago
Now it's time to get serious with the module system. I think of this model:
from utils import map
You are looking for the map symbol in the utils module of the standard library.
map
utils
from "./foo.komodo" import bar
You are looking for the bar symbol in the foo.komodo file that is in the same directory as the file where this line is.
bar
foo.komodo
I already mentioned importing modules from URIs in #66.
Now it's time to get serious with the module system. I think of this model:
You are looking for the
map
symbol in theutils
module of the standard library.You are looking for the
bar
symbol in thefoo.komodo
file that is in the same directory as the file where this line is.