mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-05 04:27:51 +00:00
14 lines
254 B
Odin
14 lines
254 B
Odin
package text_table
|
|
|
|
import "core:io"
|
|
import os "core:os/os2"
|
|
import "core:strings"
|
|
|
|
stdio_writer :: proc() -> io.Writer {
|
|
return os.stdout.stream
|
|
}
|
|
|
|
strings_builder_writer :: proc(b: ^strings.Builder) -> io.Writer {
|
|
return strings.to_writer(b)
|
|
}
|