1/// Platform-independent runtime.
2pub mod core {
34pub use rt_local_core::runtime::core::*;
5pub use rt_local_macros::{core_main as main, core_test as test};
6}
78/// Runtime with Windows message loop.
9#[cfg(all(windows, feature = "windows"))]
10pub mod windows;