Room 01 · 18 min
From code to machine
Follow a program from source text to executed instructions.
01Understand
The mental model
A language describes intent. A toolchain transforms that intent into a representation the runtime can process; compiled and interpreted describe stages, not two airtight language families.
Precise anchors
- Source code
- Text written and maintained by people.
- Compilation
- Transformation of a program into another representation.
- Interpretation
- Execution controlled by an environment that reads a program representation.
- Runtime
- Environment and services available during execution.
02Produce
Use your own words and connect ideas through cause or consequence.
Observable rubric
- Both chains start from a source file.
- Each arrow names a transformation or environment.
- The final stage is actually executable.
A strong example will appear after your first attempt.
03Verify