windjammer_runtime/platform/mod.rs
1//! Platform-specific implementations
2//!
3//! This module provides platform-specific implementations of Windjammer's standard library.
4//! The compiler automatically selects the appropriate platform based on the compilation target.
5
6#[cfg(not(target_arch = "wasm32"))]
7pub mod native;
8
9#[cfg(target_arch = "wasm32")]
10pub mod wasm;