|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"time"
|
|
|
|
|
"fmt"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
@ -11,5 +12,13 @@ func main(){
|
|
|
|
|
if personSalary == nil {
|
|
|
|
|
fmt.Println("map is nil. Going to make one.")
|
|
|
|
|
personSalary = make(map[string]int)
|
|
|
|
|
fmt.Printf(format string, a ...interface{})
|
|
|
|
|
time.Microsecond
|
|
|
|
|
fmt.Printf(format string, a ...interface{})
|
|
|
|
|
fmt.Print(a ...interface{})
|
|
|
|
|
time.Millisecond();
|
|
|
|
|
fmt.Print(a)
|
|
|
|
|
fmt.Println(a)
|
|
|
|
|
fmt.Printf(format, a)
|
|
|
|
|
}
|
|
|
|
|
}
|