diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-04-29 16:19:13 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-04-29 16:19:13 +0200 |
| commit | 09e1c0fa27a262d7fbfaa5b3e305054304847e75 (patch) | |
| tree | 35ec340bcc72933d2eb48625ec0cf83c86a7fca0 /examples | |
| parent | 957ef8e8fe885fed32b62d532e642be5e756ea67 (diff) | |
[i18n] Add tests.
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/all/all_main.odin | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/all/all_main.odin b/examples/all/all_main.odin index 27f199062..36acf7714 100644 --- a/examples/all/all_main.odin +++ b/examples/all/all_main.odin @@ -56,6 +56,7 @@ import csv "core:encoding/csv" import hxa "core:encoding/hxa" import json "core:encoding/json" import varint "core:encoding/varint" +import xml "core:encoding/xml" import fmt "core:fmt" import hash "core:hash" @@ -100,6 +101,7 @@ import strings "core:strings" import sync "core:sync" import testing "core:testing" import scanner "core:text/scanner" +import i18n "core:text/i18n" import thread "core:thread" import time "core:time" @@ -158,6 +160,7 @@ _ :: csv _ :: hxa _ :: json _ :: varint +_ :: xml _ :: fmt _ :: hash _ :: image @@ -192,6 +195,7 @@ _ :: strings _ :: sync _ :: testing _ :: scanner +_ :: i18n _ :: thread _ :: time _ :: unicode |