github.com/filecoin-project/bacalhau@v0.3.23-0.20230228154132-45c989550ace/testdata/wasm/env/src/main.rs (about)

     1  use std::env;
     2  
     3  fn main() {
     4      for (key, value) in env::vars() {
     5          println!("{key}={value}");
     6      }
     7  }