mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-16 08:01:24 -07:00
7 lines
149 B
Odin
7 lines
149 B
Odin
import "fmt.odin";
|
|
|
|
main :: proc() {
|
|
v, ok := fmt.string_to_enum_value(Allocator.Mode, "FreeAll");
|
|
if ok do assert(v == Allocator.Mode.FreeAll);
|
|
}
|