// core — the root of the Flash standard library. // // Nothing lives here but re-exports: each submodule is its own file beside // this one, and consumers import the library as a single named module // (`use core`) and reach the submodules through it (`core.mem.eql`, …). // The surface grows one submodule at a time. pub use "mem" as mem pub use "list" as list pub use "fmt" as fmt pub use "math" as math pub use "arena" as arena pub use "json" as json