We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9130a9 commit ad9bcc7Copy full SHA for ad9bcc7
.vitepress/config.mts
@@ -76,6 +76,14 @@ export default defineConfig({
76
{ text: "Chapter 5.3", link: "/book/chapter5.3" },
77
],
78
},
79
+ {
80
+ text: "Chapter 6",
81
+ link: "/book/chapter6",
82
+ items: [
83
+ { text: "Chapter 6.1", link: "/book/chapter6.1" },
84
+ { text: "Chapter 6.2", link: "/book/chapter6.2" },
85
+ ],
86
+ },
87
88
89
book/chapter6.md
@@ -0,0 +1,10 @@
1
+---
2
+title: "Chapter 6"
3
4
+
5
+# Chapter 6: Error Handling
6
7
+Smooth sailing from here! In this chapter, we’ll discuss:
8
9
+- Errors and things you may encounter while using GLang
10
+- Graceful error handling with `try`/`catch`
0 commit comments