Chapter Text
I never thought I’d need to teach any of you programming just for a better understanding for the fic, but, uh, yeah, I’m doing it.
But before that, you can just go onto the next chapter and read! Like I said, they are decorations. You can just read the one that looks like English.
If you got confused, you can check this chapter.
That’s kind of bad planning of me. My major is CS and I took these as common things, but it appears there needs some explanation to better understand this work. Deeply sorry for making it confusing.
- "man" is a command meaning "MANual."
- "let" is a keyword used to declare a variable.
- "::" represents "the something in the back, of something of the front", like a file path separator.
- "." symbol also represents similar meaning, but no need to go deep into it.
- "<C-Z>" means CTRL-Z, a command to suspend or pause the current app in the terminal, and "fg %1" resumes the first suspended task.
- Function/method calls are skipped as you may be familiar with them- for those who don't, it's not a big deal anywats.
- "&" is the reference symbol, but it can be treated as nothing.
- "Panic" means there is an error.
- "Stream" is a way to process data.
- "u8 stream" means utf-8 character stream.
- "Loop" is a keyword in Rust for infinite execution of code.
- ".then" and ".except" are functions for handling success and error cases.
- "Unwrap" is used for error handling.
- Stack Overflow is a common error due to excessive use of stack memory since there has a infinite loop.
- "<C-D>" or CTRL-D inputs an end-of-file character in the terminal to indicate the end of a file.
