Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Go Language Go Language Overview Custom Types Structs

I can't find a solution to struct challenge

We've updated the way we're tracking minutes and hours. Now, both are stored as int fields in a struct type named Clock. Write a Noon function that returns a new Clock value with its Hours field set to 12, and its Minutes field set to 0.

src/clock/clock.go
package clock

type Clock struct {
  Hours int
  Minutes int
}

func Noon() struct {
  // newClock = 
  //newClock.Hours = 12 
  // newClock.Minutes = 0 
  return Clock{12, 0}
}

2 Answers

Steven Parker
Steven Parker
229,744 Points

The instructions ask for a "function that returns a new Clock value", and while your function actually does return a "Clock", it is defined as returning a "struct" instead.

Also, the function is missing the final closing brace ("}").

Thanks a lot, I was stuck.