mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-24 06:35:00 -07:00
12 lines
165 B
Odin
12 lines
165 B
Odin
import "fmt.odin";
|
|
import "strconv.odin";
|
|
|
|
Opaque :: union{};
|
|
|
|
main :: proc() {
|
|
buf := make([]u8, 0, 10);
|
|
s := strconv.append_bool(buf, true);
|
|
fmt.println(s);
|
|
}
|
|
|