diff options
| author | gingerBill <bill@gingerbill.org> | 2022-06-12 17:25:42 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-06-12 17:25:42 +0100 |
| commit | ff9d0583920dcd76bc47b580a52fce852b48fc66 (patch) | |
| tree | f0a2839512f59ad439533d40122a35aff4527c78 /examples | |
| parent | 1acc8f438b7d8087b6b74ab66ac6ac64255a3607 (diff) | |
Minor changes to `core:slice/heap`; add to examples/all
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/all/all_main.odin | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/all/all_main.odin b/examples/all/all_main.odin index 1ab242305..9f347fad3 100644 --- a/examples/all/all_main.odin +++ b/examples/all/all_main.odin @@ -98,6 +98,7 @@ import reflect "core:reflect" import runtime "core:runtime" import simd "core:simd" import slice "core:slice" +import slice_heap "core:slice/heap" import sort "core:sort" import strconv "core:strconv" import strings "core:strings" @@ -195,6 +196,7 @@ _ :: reflect _ :: runtime _ :: simd _ :: slice +_ :: slice_heap _ :: sort _ :: strconv _ :: strings |