Blog 👨‍💻

Technical explorations in computer science, mathematics and systems.

[ RUST ][Copiar]
fn main() {
    let curiosity = 0xDEADBEEF;
    let knowledge = 0b1010101010101010;

    println!("Curiosity : 0x{:X}", curiosity);
    println!("Knowledge : {:016b}", knowledge);

    // Memory Analysis Simulation
    for i in 0..5 {
        println!("Analizando offset: 0x{:X}", i * 0x100);
    }

    explore_systems();
}