Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Chapters/12-file-op.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ This means that every program you write have a dedicated `stdin`, `stderr` and `
from the `stdin`, `stderr` and `stdout` of other programs and processes that are currently running.

This is a behaviour from your OS. This does not come from the programming language that you are using.
Because as I sad earlier, input and output in programming languages, especially
Because as I said earlier, input and output in programming languages, especially
in high-level ones, are just a simple abstraction over the `stdin`, `stderr` and `stdout` from your current OS.
That is, your OS is the intermediary between every input/output operation made in your program,
regardless of the programming language that you are using.
Expand Down