Go Programming Language Cookbook

      Text text text

      1. Strings
      2. Files
        1. Opening
        2. Closing

      Incrementing a counter

       i += 1;  /* i = i + 1;  */
       i++;     /* same result */
      
      

      External Resources

      The Go project (http://golang.org/)

      List of packages:

      (http://golang.org/pkg/) - list of packages supported and/or maintained by the Go project.
      (https://godashboard.appspot.com/) - list of packages not supported nor maintained by the Go project.
      Last modified on 8 April 2012, at 06:08