ccdb_script 1.4.0

A small language to add in games for easy modding
Documentation
1
2
3
4
5
6
7
8
pub fn get_size(find_size: Vec<String>) ->u64{
    let mut col: usize = 0;
    for x in find_size{
        col +=  x.chars().collect::<Vec<char>>().len();
        
    }
    col as u64
}