1package evaluation 2 3// Maybe a task in the project management system 4type Task struct { 5 id int 6 name string 7 description string 8 status string 9}