Skip to content

Commit

Permalink
Rename sections
Browse files Browse the repository at this point in the history
  • Loading branch information
Caleb-o committed Sep 21, 2024
1 parent 0fad879 commit d662cd2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 13 deletions.
3 changes: 2 additions & 1 deletion src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
- [Using stdio]()
- [Filesystem]()
- [Compiletime, Macros and Reflection]()
- [Using C with C3]()

- [Projects](projects.md)
- [Echo TCP Client/Server]()
- [Writing an Allocator]()
- [Calculator Evaluator](./projects/calculator.md)
- [Parser and Evaluator](./projects/calculator.md)
3 changes: 2 additions & 1 deletion src/concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ From here, we will be covering specific topics in C3. These can range from commo
Topics we will cover:
- [Using stdio](): reading and writing to the console with stdio
- [The Filesystem](): reading and writing files
- [Compiletime, Macros and Reflection]()
- [Compiletime, Macros and Reflection]()
- [Using C with C3]()
9 changes: 0 additions & 9 deletions src/examples.md

This file was deleted.

4 changes: 2 additions & 2 deletions src/projects.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ This is a showcase of small projects you could create in C3. These examples are
> For most of these examples, we will slowly go over each part and then do a code dump at the end. If you're using a project to run these examples, you can use `c3c run` or `c3c build`. Otherwise you can compile and run a file with `c3c compile-run --run-once <thefile>.c3`.
Projects:
- [TCP Server](): a basic echo TCP client and server
- [Echo TCP Client/Server](): a basic echo TCP client and server
- [Writing an Allocator](): write a basic allocator that you can use to handle memory
- [Evaluating a basic expression](./projects/calculator.md): create a small parser and evaluator for a calculator
- [Parser and Evaluator](./projects/calculator.md): create a small parser and evaluator for a calculator

0 comments on commit d662cd2

Please sign in to comment.