mirror of
https://github.com/logos-blockchain/lssa-zkvm-testing.git
synced 2026-01-02 13:23:08 +00:00
7 lines
95 B
Rust
7 lines
95 B
Rust
use risc0_zkvm::guest::env;
|
|
|
|
fn main() {
|
|
let a: u128 = env::read();
|
|
env::commit(&a);
|
|
}
|