Go Package fmt: Difference between revisions
Jump to navigation
Jump to search
Line 9: | Line 9: | ||
=<tt>fmt</tt> Package Functions= | =<tt>fmt</tt> Package Functions= | ||
* <tt>[https://golang.org/pkg/fmt/# | * <tt>[https://golang.org/pkg/fmt/#Println fmt.Println()]</tt> | ||
* <tt>[https://golang.org/pkg/fmt/#Printf fmt.Printf()]</tt> | |||
Prints according to a format specifier. Format specifier documentation https://golang.org/pkg/fmt | Prints according to a format specifier. Format specifier documentation https://golang.org/pkg/fmt |
Revision as of 04:23, 4 April 2016
External
Internal
fmt Package Functions
Prints according to a format specifier. Format specifier documentation https://golang.org/pkg/fmt
Pointers
fmt.Printf("%p\n", sPtr)
Ints
fmt.Printf("%d\n",i)