diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 005c558..a64e1ef 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -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) \ No newline at end of file + - [Parser and Evaluator](./projects/calculator.md) \ No newline at end of file diff --git a/src/concepts.md b/src/concepts.md index 3820413..82a979c 100644 --- a/src/concepts.md +++ b/src/concepts.md @@ -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]() \ No newline at end of file +- [Compiletime, Macros and Reflection]() +- [Using C with C3]() \ No newline at end of file diff --git a/src/examples.md b/src/examples.md deleted file mode 100644 index c3b59da..0000000 --- a/src/examples.md +++ /dev/null @@ -1,9 +0,0 @@ -# Examples - -> 🚧 Not all topics are written yet and are a work in progress - -From here, we will be covering specific topics in C3. These can range from common operations, to data structures and small projects. 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 .c3`. - -Topics we will cover: -- [Using stdio](): reading and writing to the console with stdio -- [The Filesystem](): reading and writing files \ No newline at end of file diff --git a/src/projects.md b/src/projects.md index 04b1586..00eb902 100644 --- a/src/projects.md +++ b/src/projects.md @@ -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 .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 \ No newline at end of file +- [Parser and Evaluator](./projects/calculator.md): create a small parser and evaluator for a calculator \ No newline at end of file