If you want to change selection, open document below and click on "Move attachment"
Writing Web Applications - The Go Programming Languagedy (the page content). Here, we define Page as a struct with two fields representing the title and body. type Page struct { Title string Body []byte } The type []byte means "a byte slice". (See <span>Slices: usage and internals for more on slices.) The Body element is a []byte rather than string because that is the type expected by the io libraries we will use, as you'll see below. The Page struct describes ho Summary
status | not read | | reprioritisations | |
---|
last reprioritisation on | | | suggested re-reading day | |
---|
started reading on | | | finished reading on | |
---|
Details