Spaces:
Sleeping
Sleeping
File size: 349 Bytes
96aceaf 3618269 e78bafa 3618269 96aceaf 3618269 96aceaf 3618269 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | // src/main.rs
mod programs;
use programs::{CREDIT_REQUEST, GOVERNANCE_VOTE};
fn main() {
println!("Bitcoin Credit Network VM booting...");
println!("Loaded CREDIT_REQUEST module: {}", CREDIT_REQUEST);
println!("Loaded GOVERNANCE_VOTE module: {}", GOVERNANCE_VOTE);
// Add your core VM loop, dispatch, or simulation logic below
} |