10 lines
215 B
Plaintext
10 lines
215 B
Plaintext
main func() i32 {
|
|
typed_result i32 :: typed_allocator_test()
|
|
if (typed_result != 0) return typed_result
|
|
|
|
raw_result i32 :: raw_allocator_test()
|
|
if (raw_result != 0) return raw_result
|
|
|
|
return task_list_test()
|
|
}
|