Hello world!
Published: 12/31/2024
This is my first blogpost! What else there to do but test out all the nifty features I’ve just spent the last few hours configuring.
My favorite thing is how code blocks look, courtesy of Expressive Code:
@dataclassclass Node:2 collapsed lines
value: any children: dict[str, "Node"]
def bfs(start: Node): q = deque([start]) while q: cur = q.popleft() print(cur.value) q.extend(cur.children.values())
Here’s a block quote
And I think I should even be able to use some mdx to define a list easily:
- foo
- bar
- baz
H1
H2
H3
H4
H5
H6
Does
work? Can I do ? Noice.