// Language modules - split by feature flags
// no_std constants are always available
moden_no_std;#[cfg(feature ="std")]moden_std;// Re-export constants based on feature flags
// no_std constants are always available
pubuseen_no_std::*;// std constants are only available with std feature
#[cfg(feature ="std")]pubuseen_std::*;