update readme files

This commit is contained in:
Andy Pan 2018-12-03 11:23:37 +08:00
parent b0a859aff4
commit c181c30561
2 changed files with 4 additions and 4 deletions

View File

@ -52,14 +52,14 @@ import (
var sum int32 var sum int32
func myFunc(i interface{}) error { func myFunc(i interface{}) {
n := i.(int32) n := i.(int32)
atomic.AddInt32(&sum, n) atomic.AddInt32(&sum, n)
fmt.Printf("run with %d\n", n) fmt.Printf("run with %d\n", n)
return nil return nil
} }
func demoFunc() error { func demoFunc() {
time.Sleep(10 * time.Millisecond) time.Sleep(10 * time.Millisecond)
fmt.Println("Hello World!") fmt.Println("Hello World!")
return nil return nil

View File

@ -51,14 +51,14 @@ import (
var sum int32 var sum int32
func myFunc(i interface{}) error { func myFunc(i interface{}) {
n := i.(int32) n := i.(int32)
atomic.AddInt32(&sum, n) atomic.AddInt32(&sum, n)
fmt.Printf("run with %d\n", n) fmt.Printf("run with %d\n", n)
return nil return nil
} }
func demoFunc() error { func demoFunc() {
time.Sleep(10 * time.Millisecond) time.Sleep(10 * time.Millisecond)
fmt.Println("Hello World!") fmt.Println("Hello World!")
return nil return nil