JavaScript
console.log("Runtime output");Simple difference with classroom example
Compile time happens before the program runs. Runtime happens while the program is running.
Teacher checking homework before class is like compile time. Student answering during class is like runtime.
Do not confuse code checking before run with output during run.
console.log("Runtime output");g++ program.cpp -o program
./programpython program.py<?php echo "Runtime output"; ?>Compile time = before run. Runtime = during run.