Skip to content

Commit cf0844d

Browse files
committed
added documentation
1 parent b0b3ae7 commit cf0844d

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ This library brings Python's most beloved features to C++ - dynamic typing, easy
77
## Table of Contents
88

99
- [Installation & Build](#installation--build)
10+
- [Learn](docs/index.md)
1011

1112
- [Quick Start](#quick-start)
1213
- [The Easy Way (Recommended)](#the-easy-way-recommended)

docs/Errors/errors.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,4 +121,5 @@ try {
121121
---
122122

123123
## Next Check
124+
124125
- [Iteration](../Loops/iteration.md)

docs/File_io/File_io.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,4 +116,4 @@ for (auto line : f) {
116116

117117
## Next check
118118

119-
- [QuickStart](examples/quickstart.md)
119+
- [QuickStart](../examples/quickstart.md)

docs/Functional/functional.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,6 @@ print(f(3)); // 7
130130
131131
---
132132
133-
## See Also
133+
## Next Check
134134
135-
- [Iteration Helpers](iteration.md)
136-
- [Math Functions](math.md)
137-
- [Containers](containers.md)
135+
- [File-I/O](../File_io/File_io.md)

docs/Loops/iteration.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,6 @@ print(all(list(1,1,1)));
113113
114114
---
115115
116-
## See Also
116+
## Next Check
117117
118-
- [Math Functions](math.md)
119-
- [Containers](containers.md)
120-
- [Construction & Lifetime](Var/construction_and_lifetime.md)
118+
- [Functional](../Functional/functional.md)

docs/examples/quickstart.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
[⬅ Back to Table of Contents](../index.md)
22
# Quick Start
33

44
### The Easy Way (Recommended)
@@ -66,4 +66,6 @@ var flag = true; // bool
6666
// Changes type whenever you want
6767
x = "now I'm a string";
6868
x = list(1, 2, 3); // now I'm a list!
69-
```
69+
```
70+
71+
[⬅ Back to main readme](../../README.md)

0 commit comments

Comments
 (0)