aboutsummaryrefslogtreecommitdiff
path: root/core/os/doc.odin
diff options
context:
space:
mode:
Diffstat (limited to 'core/os/doc.odin')
-rw-r--r--core/os/doc.odin6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/os/doc.odin b/core/os/doc.odin
new file mode 100644
index 000000000..2ebdd0912
--- /dev/null
+++ b/core/os/doc.odin
@@ -0,0 +1,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