Modulesยง
- io1
- Input/output utilities without proper error handling. Functions return empty values on error.
- io2
- Input/output utilities with
Option
-based error handling. Functions returnNone
on error. - io3
- Input/output utilities with proper
Result
-based error handling. Functions propagate the errors from Rust standard library. - random
- Provides functions to generate random numbers.