1// Initialize core identity
2struct Hacker {
3    id: String,
4    status: String,
5}
6
7fn main() {
8    let profile = Hacker {
9        id: String::from("zzZ"),
10        status: String::from("Online"),
11    };
12
13    /* "If you don't believe me or don't get it,
14     I don't have time to try to convince you, sorry." - Satoshi Nakamoto */
15}