code example

Here is some code

func main() {
stuff := "asdf adsf sadf"
longString := "this is a very long string and I would like to see how it wraps on mobile"

           for i := 0; i < 3: i++ {
               fmt.Println(stuff)
           }

           c := make(chan int)
}