Skip to content

Commit a2b55cf

Browse files
committed
adding json & xml modules; update all table of contents links for remaining sections
1 parent cacdad1 commit a2b55cf

File tree

3 files changed

+40
-5
lines changed

3 files changed

+40
-5
lines changed

README.md

+30-5
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,33 @@ go run . -module closingchannels
7070
* [48 - String Formatting](stringformatting/main.go)
7171
* [49 - Text Templating](texttemplates/main.go)
7272
* [50 - Regexp](regex/main.go)
73-
* [77 - Contexts](contexts/main.go)
74-
* [78 - Spawning Processes](spawningprocesses/main.go)
75-
* [79 - Execing Processes](execingprocesses/main.go)
76-
* [80 - Signals](signals/main.go)
77-
* [81 - Exit](exit/main.go)
73+
* [51 - Json](json/main.go)
74+
* [52 - Xml](xml/main.go)
75+
* [53 - Time](time/main.go)
76+
* [54 - Epoch](epoch/main.go)
77+
* [55 - Time Formatting](timeformatting/main.go)
78+
* [56 - Random Numbers](randomnumbers/main.go)
79+
* [57 - Number Parsing](numberparsing/main.go)
80+
* [58 - URL Parsing](urlparsing/main.go)
81+
* [59 - SHA256 Parsing](sha256/main.go)
82+
* [60 - Base64 Encoding](base64/main.go)
83+
* [61 - Reading Files](readingfiles/main.go)
84+
* [62 - Writing Files](writingfiles/main.go)
85+
* [63 - Line Filters](linefilters/main.go)
86+
* [64 - File Paths](filepaths/main.go)
87+
* [65 - Directories](directories/main.go)
88+
* [66 - Temporary Files & Directories](temporaryfiledirs/main.go)
89+
* [67 - Embed Directive](embedding/main.go)
90+
* [68 - Testing & Benchmarking](testingbenchmarking/main.go)
91+
* [69 - Command Line Arguments](cli/main.go)
92+
* [70 - Command Line Flags](clf/main.go)
93+
* [71 - Command Line Subcommands](cls/main.go)
94+
* [72 - Environment Vars](environment/main.go)
95+
* [73 - Logging](logging/main.go)
96+
* [74 - HTTP Client](httpclient/main.go)
97+
* [75 - HTTP Server](httpserver/main.go)
98+
* [76 - Contexts](contexts/main.go)
99+
* [77 - Spawning Processes](spawningprocesses/main.go)
100+
* [78 - Execing Processes](execingprocesses/main.go)
101+
* [79 - Signals](signals/main.go)
102+
* [80 - Exit](exit/main.go)

json/main.go

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package json
2+
3+
func Run() {
4+
5+
}

xml/main.go

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package xml
2+
3+
func Run() {
4+
5+
}

0 commit comments

Comments
 (0)