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 trialSerge Kovalenko
9,526 PointsTask goal not clear or verification is not valid
Task goal is not clear or verification is not valid.
package clock
type Clock struct {
Hours int
Minutes int
}
func Noon(h int, m int) (int, int) {
h = 12
m = 0
return h, m
}
1 Answer
Steven Parker
231,236 PointsThe instructions say "Write a Noon function that returns a new Clock value with its Hours field set to 12, and its Minutes field set to 0."
But the code here is returning two "int" values instead of one Clock value. Also, it is taking two arguments, but the instructions did not ask for any (and you don't need them since you will be using static values).