diff options
Diffstat (limited to 'content/articles/2022-08-29-blog-test.md')
-rw-r--r-- | content/articles/2022-08-29-blog-test.md | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/content/articles/2022-08-29-blog-test.md b/content/articles/2022-08-29-blog-test.md index ea4d166..2b65444 100644 --- a/content/articles/2022-08-29-blog-test.md +++ b/content/articles/2022-08-29-blog-test.md @@ -10,9 +10,11 @@ _italic_ **bold** `code` [Link](https://metamuffin.org/) Look at this code here. -``` -code -block +```rs +fn main() { 1 + 1 } +pub async fn useless(s: Box<dyn Write>) -> impl Future<usize> { + todo!() +} ``` As you can see, its pointless i.e. no points |