Implement check function
This commit is contained in:
parent
b25cab0104
commit
a6463b0b25
|
@ -2,8 +2,15 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"log"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func check(err error) {
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
fmt.Println("Hello, world")
|
fmt.Println("Hello, world")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue