# Note with code block

Some text before the code block

```
# This program prints *Hello, world* in _Python_

print('Hello, world!\n')


```

Some code after the code block 1

One more longer code block

```
// some Rust code...
fn main() {
    for n in 1..=100 {
        if n % 15 == 0 {
            println!("fizzbuzz");
        } else if n % 3 == 0 {
            println!("fizz");
        } else if n % 5 == 0 {
            println!("buzz");
        } else {
            println!("{}", n);
        }
    }
}
```

    Created at: 2020-10-19T20:42:41+01:00
    Updated at: 2020-10-19T22:01:41+01:00

