diff options
author | metamuffin <metamuffin@disroot.org> | 2023-02-13 20:25:04 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-02-13 20:25:04 +0100 |
commit | c19adca147d38562b3f4a06cb2205e043bc24856 (patch) | |
tree | 808ceebd163294cc66ed8882885348b914ab1125 /content/articles/2022-08-29-blog-test.md | |
parent | 77eef59404acaed6faa636239bd18010e34a91de (diff) | |
download | metamuffin-blog-c19adca147d38562b3f4a06cb2205e043bc24856.tar metamuffin-blog-c19adca147d38562b3f4a06cb2205e043bc24856.tar.bz2 metamuffin-blog-c19adca147d38562b3f4a06cb2205e043bc24856.tar.zst |
restructure for embedding into my website
Diffstat (limited to 'content/articles/2022-08-29-blog-test.md')
-rw-r--r-- | content/articles/2022-08-29-blog-test.md | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/content/articles/2022-08-29-blog-test.md b/content/articles/2022-08-29-blog-test.md deleted file mode 100644 index 1c4a28a..0000000 --- a/content/articles/2022-08-29-blog-test.md +++ /dev/null @@ -1,41 +0,0 @@ -# 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 |