22 lines
217 B
Markdown
22 lines
217 B
Markdown
+++
|
|
date = '2026-02-27T22:22:10-06:00'
|
|
draft = true
|
|
title = 'Basics'
|
|
layout = 'note'
|
|
type = 'notes'
|
|
tags = 'cpp'
|
|
chapter = '01'
|
|
+++
|
|
|
|
This is the basics:
|
|
|
|
```c++
|
|
// This is a code block
|
|
|
|
int main() {
|
|
|
|
return 0;
|
|
|
|
}
|
|
```
|