23 lines
330 B
Markdown
23 lines
330 B
Markdown
---
|
|
date: '2026-01-04T15:57:21+08:00'
|
|
draft: true
|
|
title: 'My First Post'
|
|
---
|
|
|
|
# Introduction
|
|
|
|
This is **bold** text, and this is *emphasized* text.
|
|
|
|
Visit this [Hugo](https://gohugo.io) website!
|
|
|
|
```cpp
|
|
#include <iostream>
|
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
std::cout << "This is code..." << std::endl;
|
|
|
|
return 0;
|
|
}
|
|
```
|