aboutsummaryrefslogtreecommitdiff
path: root/zkvms/zkm/guest/src/main.rs
blob: 02113b45d8f3ccb8d77d70c09f15fded9f232d69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![no_std]
#![no_main]

use wrapper_macro::make_wrapper;

extern crate alloc;
use alloc::{ vec::*, collections::*, string::* };
use zkm_runtime::io::{ read, commit };

zkm_runtime::entrypoint!(main);

pub fn main() {
    zkp::entrypoint_expr!()
}