IO
Stdout/in
Output
Println
- print with newline
Print
- print w/out newline
Printf
fmt.Printf("value of a Number: %v\n", aNumber)
got a lot of % stuff like %T
for type
Sprintf is like printf but returns the value
Input
Scanf gets first string
buffo/os
Advanced Formatin
Modifer
Description
%06d
Print with width 6, pad with 0s
%s
Print as string
%T
Type
Last updated