Challenge: Writing to a WIKI Page
This lesson brings you a challenge to solve.
We'll cover the following...
Problem statement
The data structure of our program is a struct containing the following fields:
type Page struct {
Title string
Body []byte
}
...