1
2
3
4
5
6
7
8
9
//! MATRIX

#![no_std]

pub mod matrix;

pub fn test(number: u8) -> u8 {
    number
}