mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-14 18:02:22 -07:00
7 lines
96 B
Odin
7 lines
96 B
Odin
package os2
|
|
|
|
@(require_results)
|
|
pipe :: proc() -> (r, w: ^File, err: Error) {
|
|
return _pipe()
|
|
}
|