11 lines
176 B
Go
11 lines
176 B
Go
import (
|
|
"image"
|
|
"image/gif"
|
|
"io/ioutil"
|
|
"strings"
|
|
"unicode"
|
|
)
|
|
|
|
func f() (int, float64) { return 0, 0 }
|
|
func g(int, float64) int { return 0 }
|
|
func h(string, ...int) {}
|