1. Communicating on the Web
How Does Web Communication Work?
Jello
Assignment
Assignment / Solution
package main
import (
"fmt"
"log"
)
func main() {
issues, err := getIssueData()
if err != nil {
log.Fatalf("error getting issue data: %v", err)
}
// Don't edit above this line
bytes := string(issues)
fmt.Println(bytes)
}