From b8f3d0fb53e8d2770da05fd923ba70dbde625a5a Mon Sep 17 00:00:00 2001 From: Feoramund <161657516+Feoramund@users.noreply.github.com> Date: Mon, 22 Jul 2024 13:27:06 -0400 Subject: [PATCH] Add `core:text/regex` to `examples/all` --- examples/all/all_main.odin | 2 ++ 1 file changed, 2 insertions(+) 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