ribo 0.1.3

Ribo for universe, provide tons of util functions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// just for showing Ribo Code Name

const CODENAME: &str = r#" ______     __     ______     ______    
/\  == \   /\ \   /\  == \   /\  __ \   
\ \  __<   \ \ \  \ \  __<   \ \ \/\ \  
 \ \_\ \_\  \ \_\  \ \_____\  \ \_____\ 
  \/_/ /_/   \/_/   \/_____/   \/_____/ 
                                        "#;

pub fn print_codename() {
    println!("{}", CODENAME);
}