diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2024-08-21 13:55:11 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-21 13:55:11 +0100 |
| commit | 58e811eea5a4a9145590cbefc276078764c16fcf (patch) | |
| tree | 1d12b4fdea0aa263aa03ed04a4001033207557b2 /examples | |
| parent | e7b8e61c6806d32c923733f365b828dea4a2bbb9 (diff) | |
| parent | d0d4f19097a8df19ebe5ef471047c656bd2318b3 (diff) | |
Merge pull request #3962 from Feoramund/regex
Add `core:text/regex`
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 63bd386f8..5bd45fda4 100644 --- a/examples/all/all_main.odin +++ b/examples/all/all_main.odin @@ -128,6 +128,7 @@ import testing "core:testing" import edit "core:text/edit" import i18n "core:text/i18n" import match "core:text/match" +import regex "core:text/regex" import scanner "core:text/scanner" import table "core:text/table" @@ -251,6 +252,7 @@ _ :: testing _ :: scanner _ :: i18n _ :: match +_ :: regex _ :: table _ :: edit _ :: thread |