blob: 1c4a28ab226c78a672bfc7e6f0851b36078b32f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Blog test
Hello world!
## heading
_italic_ **bold** `code` [Link](https://metamuffin.org/)
### sub heading
Look at this code here.
```rs
#[derive(Default)]
struct Impossible<T> {
something: HashMap<usize, T>,
// ^- look here, a keyword! --the grammar regex
itself: Impossible,
}
pub async fn useless(s: Box<dyn Write>) -> impl Future<usize> {
todo!() // this panics
}
fn main() {
1 + "blub"
for (x, y) in [(1,2),(3,4)] {
println!("{x} and {y}");
Impossible::default();
}
}
```
As you can see, its pointless i.e. no points
- list
- list
- list
1. first this
2. then that
3. done
|