You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yuurei/src/main.rs

16 lines
275 B

#![cfg_attr(feature="nightly", feature(test))]
#![allow(dead_code)]
#[cfg(all(feature="nightly", test))] extern crate test;
#[macro_use] extern crate serde;
#[macro_use] mod ext; use ext::*;
mod delta;
#[tokio::main]
async fn main() {
println!("Hello, world!");
}