1
2
3
4
5
6
7
8
9
10
11
//! # CastleCore
//!
//! It's my crate!

/// Example of module 
pub mod functions;

/// Example of crate (not module) functions
pub fn print_ver() {
    println!("v0.0.1");
}