Files
website/content/cpp/basics/index.md
2026-02-27 22:58:11 -06:00

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;
}
```