Concept Flow - Reading files synchronously
Start
Call readFileSync
Node.js reads file from disk
File content loaded into memory
Return file content
Use file content in program
End
This flow shows how Node.js reads a file synchronously: the program waits while the file is read, then continues with the file content.