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:
- Portable espresso machine
- Smart water bottle
- Foldable electric bike
- Levitating Bluetooth speaker
- Robotic vacuum cleaner
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);
}