LearnOrganization

Organization

Split code into files, packages, imports, exports, and stdlib modules.

A small file is easy to read. A real project needs more than one file. Organization keeps names easy to find.

Think of a package like a box with a label. Files are smaller boxes inside it. export marks what other files may use. import brings a name into the file that needs it.

This part teaches files, packages, imports, exports, and common library modules. It shows what to write and where to put it.

Good organization keeps a project calm when it grows.