blob: 079e0cef468d30988a71986a300c1e9936dfb62b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#![no_main]
use sp1_zkvm::io::read;
use sp1_zkvm::lib::io::commit;
use std::collections::*;
use wrapper_macro::make_wrapper;
sp1_zkvm::entrypoint!(main);
pub fn main() {
zkp::entrypoint_expr!()
}
|