0% developed

Go Programming Language Cookbook

From Wikibooks, open books for an open world
Jump to navigation Jump to search

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.