mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 01:21:38 +08:00
fix: coding style and file format for all example.
This commit is contained in:
@@ -1,19 +1,20 @@
|
||||
// defer_logvalues.go
|
||||
package main
|
||||
|
||||
import (
|
||||
"io"
|
||||
"log"
|
||||
)
|
||||
|
||||
func func1(s string) (n int, err error) {
|
||||
defer func() {
|
||||
log.Printf("func1(%q) = %d, %v", s, n, err)
|
||||
}()
|
||||
return 7, io.EOF
|
||||
}
|
||||
|
||||
func main() {
|
||||
func1("Go")
|
||||
}
|
||||
// Output: 2011/10/04 10:46:11 func1("Go") = 7, EOF
|
||||
// defer_logvalues.go
|
||||
package main
|
||||
|
||||
import (
|
||||
"io"
|
||||
"log"
|
||||
)
|
||||
|
||||
func func1(s string) (n int, err error) {
|
||||
defer func() {
|
||||
log.Printf("func1(%q) = %d, %v", s, n, err)
|
||||
}()
|
||||
return 7, io.EOF
|
||||
}
|
||||
|
||||
func main() {
|
||||
func1("Go")
|
||||
}
|
||||
|
||||
// Output: 2011/10/04 10:46:11 func1("Go") = 7, EOF
|
||||
|
Reference in New Issue
Block a user