01 / 05
Splitting alone does not work
Last lesson you cut things up by job. Next, try putting them in separate files.
There is a snag the moment you do, though. The name of a function written in one file cannot be seen from the other. Calling things by name worked until now because they were inside the same file.
What you use for this is export and import — the one that sends out and the one that pulls in.