rtools 0.1.27

Set of tools for my needs
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    let i_32: i32 = -1;
    let i_322: i32 = -2147483648;
    let i_64: i64 = 2147483648;

    println!("{:b}", i_32);
    println!("{:b}", i_322);
    println!("{:b}", i_64);

    println!("{:b}", i32::MIN);
}