diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-07-22 13:27:06 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-07-22 15:07:13 -0400 |
| commit | b8f3d0fb53e8d2770da05fd923ba70dbde625a5a (patch) | |
| tree | 2d85c1116824b4f890240c880082ed593ccb1e60 /examples | |
| parent | be38ba6c5e097d3e36c9113650bc7f0aeedf770b (diff) | |
Add `core:text/regex` 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 d92a6b8c4..71a1ad733 100644 --- a/examples/all/all_main.odin +++ b/examples/all/all_main.odin @@ -127,6 +127,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" @@ -248,6 +249,7 @@ _ :: testing _ :: scanner _ :: i18n _ :: match +_ :: regex _ :: table _ :: edit _ :: thread |