#[cfg(feature = "wasm")]
fn main() {
println!("WASM plugin example");
println!("TODO: Implement WASM plugin loading example");
}
#[cfg(not(feature = "wasm"))]
fn main() {
eprintln!("This example requires the 'wasm' feature.");
eprintln!("Run with: cargo run --example wasm_hello_world --features wasm");
}