mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-03 04:01:22 +00:00
8 lines
126 B
Rust
8 lines
126 B
Rust
fn main() {
|
|
for i in 0..8 {
|
|
let s = format!("Hello, {}", i);
|
|
println!("{}", s);
|
|
}
|
|
panic!("OK");
|
|
}
|