webserver.c/content/blog/first-post.md
2024-09-13 11:01:18 -07:00

16 lines
136 B
Markdown

---
title: First Post
---
This is my first post
Here's some code!
```c
int main()
{
printf("Hello, World!");
return 0;
}
```