aboutsummaryrefslogtreecommitdiff
path: root/core/os/doc.odin
blob: 2ebdd091281376046447282befbbf880a626abd9 (plain)
1
2
3
4
5
6
// Package os provides a platform-independent interface to operating system functionality.
// The design is UNIX-like but with Odin-like error handling. Failing calls return values with a specific error type rather than error number.
//
// The package os interface is intended to be uniform across all operating systems.
// Features not generally available appear in the system-specific packages under core:sys/*.
package os2