diff options
| author | gingerBill <bill@gingerbill.org> | 2023-06-07 22:40:46 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-06-07 22:40:46 +0100 |
| commit | 635842b322f3f12ed5a68f1dea4e3db45c0a3fee (patch) | |
| tree | 7a25fe802150bf0d21c49766d2fc3fe558d7fa97 /examples | |
| parent | 7dc09ed4501d0a7b256a05e6467cd86a262367ae (diff) | |
Add more text packages to `examples/all`
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/all/all_main.odin | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/all/all_main.odin b/examples/all/all_main.odin index 9515d2a00..07688cbc8 100644 --- a/examples/all/all_main.odin +++ b/examples/all/all_main.odin @@ -108,6 +108,9 @@ import sync "core:sync" import testing "core:testing" import scanner "core:text/scanner" import i18n "core:text/i18n" +import match "core:text/match" +import table "core:text/table" +import edit "core:text/edit" import thread "core:thread" import time "core:time" @@ -210,6 +213,9 @@ _ :: sync _ :: testing _ :: scanner _ :: i18n +_ :: match +_ :: table +_ :: edit _ :: thread _ :: time _ :: sysinfo |