acadia/rust/sys/victoriafalls/src/bin/victoriafalls.rs
2025-02-07 18:24:48 -08:00

15 lines
258 B
Rust

#![no_std]
#![no_main]
use mammoth::{define_entry, zion::z_err_t};
define_entry!();
#[no_mangle]
extern "C" fn main() -> z_err_t {
let yellowstone = yellowstone_yunq::from_init_endpoint();
let denali = yellowstone.get_denali().unwrap();
0
}