examples/test: make unicode example more interesting

Этот коммит содержится в:
Ayke van Laethem 2018-09-21 12:54:26 +02:00
родитель 486ea1b8ea
коммит 3e6750ae23
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: E97FF5335DFDFDED

Просмотреть файл

@ -85,7 +85,7 @@ func main() {
}, 3)
// test library functions
println("lower to upper char:", 'h', "->", unicode.ToUpper('h'))
println("lower to upper char:", string('h'), "->", string(unicode.ToUpper('h')))
}
func runFunc(f func(int), arg int) {