Sample Post 2

This is another sample post.

Code Example

Here’s a Rust ownership example:

fn main() {
    let s1 = String::from("hello");
    let s2 = s1;
    println!("{}", s2);
}

Another Section

Some more content here.

関連記事