Style Guide

Second-level heading

Third-level heading

In Japan, there is a train station that has no entrance or exit, but it exists so that people can admire the beautiful scenery of the surrounding area. The train stops there twice a day for only 30 seconds each time.

“The only way to do great work is to love what you do.” — Steve Jobs

Here are five cool things:

And here is random code:

fn main() {
    let x = 5;
    let y = {
        let x = 3;
        x + 1
    };

    println!("The value of x is: {}", x);
    println!("The value of y is: {}", y);
}