mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 17:34:34 +00:00
13 lines
242 B
Odin
13 lines
242 B
Odin
//+build js
|
|
package runtime
|
|
|
|
foreign import "odin_env"
|
|
|
|
_os_write :: proc "contextless" (data: []byte) -> (int, _OS_Errno) {
|
|
foreign odin_env {
|
|
write :: proc "contextless" (fd: u32, p: []byte) ---
|
|
}
|
|
write(1, data)
|
|
return len(data), 0
|
|
}
|