Template
This is a template post that presents the features of this blog.
Features
Typst
Math equations are rendered using typst.
This is an example of an inline math equation: $E = m c^2$, $alpha = 1 / 2$.
This is an example of an inline math equation:
,
.
This is a example of a block math equation:
$$
E = m c^2
$$
This is an example of a block math equation:

You can also render typst documents:
```typ,include=images/test.typ
```

Code
fn main() {
println!("Hello, World!");
}
fn main() {
println!("Hello, World!");
}
1 | fn main() {
|
2 | println!("Hello, World!");
|
3 | }
|
10 | fn main() {
|
11 | println!("Hello, World!");
|
12 | }
|
1 | fn main() {
|
2 | println!("Hello, World!");
|
3 | }
|
4 |
|
5 | fn bar() {
|
6 | println!("foo");
|
7 | }
|
fn main() {
println!("Hello, World!");
}