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 trialgalhardoo
19,272 PointsGod, why is wrong? :@
I copied and paste the code. made some changes, and yet doesn't work D:
package blackjack
import "fmt"
func PlayHand(score int) {
if score < 17 {
fmt.Println("hit me")
} else if score > 21 {
fmt.Println("bust")
} else {
fmt.Println("stand")
}
}
1 Answer
Steven Parker
231,248 PointsYou're really close! But the challenge asked you to return those strings, not print them.
And you can just call me "Steven".
Also, you said you "copied and paste...", but copied from where? The challenge requirements will always be a bit different from the lessons, so copying lesson code to paste in will usually not work.
galhardoo
19,272 Pointsgalhardoo
19,272 PointsWhen you start with C language and go to GO language, happens these things haha, thanks Steven :D