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 Flow Control Loops

Go - Loops Challenge

I don't know what I am doing wrong here:

when I check it, it tells me: get 3, 6, 9, ... want 6, 9, 12 ... could someone please help me with a hint ... I've been trying and trying ... doesn't work ... thank you ... Jan.

src/loops/loop.go
package loops

import "fmt"

func CountByThrees(start int, end int) {
    for i := 3; i <= 9; i += 3 {
    fmt.Println(i)
  }
}

1 Answer

I finally figured it out ... for i := start; i <= end; i += 3 ... not for i := 1; i <= 9; i += 3 ...