What does this program print?

from Structs
Go 1.27 beginner 2 min

What does this program print?

Go
package main

import "fmt"

type Job struct {
    Attempts int
    Done     bool
}

func main() {
    var job Job
    job.Attempts++
    fmt.Println(job.Attempts, job.Done)
}
Open in playground
Report an error