xref: /DragonReach/src/main.rs (revision 21fc724ca5b883631b8ea022cd8376f77bc17a69)
1 #![no_std]
2 #![no_main]
3 
4 extern crate drstd;
5 use drstd::std as std;
6 
7 mod parse;
8 mod error;
9 mod types;
10 mod contants;
11 mod unit;
12 
13 #[no_mangle]
14 fn main() {
15 
16 }
17