mirror of
https://github.com/odin-lang/Odin.git
synced 2026-07-30 02:47:47 +00:00
6 lines
79 B
Odin
6 lines
79 B
Odin
package os2
|
|
|
|
pipe :: proc() -> (r, w: Handle, err: Error) {
|
|
return _pipe();
|
|
}
|