/// Name of the PATH environment variable on Windows systems.
pub const NATIVE_PATH_ENV_VAR: &str = "Path";
/// Name of the PATH environment variable on Unix-like systems (Linux, macOS, etc.).
pub const NATIVE_PATH_ENV_VAR: &str = "PATH";
/// Character used to separate directories in a PATH environment variable on Windows is ";".
pub const ENV_PATH_SEPARATOR_CHAR: char = ';';
/// Character used to separate directories in a PATH environment variable on Linux/macOS/Unix is ":".
pub const ENV_PATH_SEPARATOR_CHAR: char = ':';
/// Line separator used on Windows is "\r\n".
pub const LINE_SEPARATOR_STR: &str = "\r\n";
/// Line separator used on Linux/macOS/Unix is "\n".
pub const LINE_SEPARATOR_STR: &str = "\n";