mirror of
https://github.com/crazybber/awesome-patterns.git
synced 2025-04-10 04:20:57 +00:00
10 lines
90 B
Go
10 lines
90 B
Go
package trypanic
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func Try() {
|
|
var test *string
|
|
fmt.Println(*test)
|
|
}
|