Concept Flow - How Ruby interprets code at runtime
Ruby reads source code
Ruby parses code into tokens
Ruby builds Abstract Syntax Tree (AST)
Ruby executes AST nodes one by one
Variables and methods are created/updated
Output or side effects happen
End
Ruby reads your code, breaks it down, builds a structure, then runs each part step-by-step, updating variables and showing results.