14 lines
178 B
Go
14 lines
178 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
func main() {
|
|
a := "Stroßbùrri"
|
|
b := "ĥåçýджк"
|
|
fmt.Println(strings.ToUpper(a))
|
|
fmt.Println(strings.ToUpper(b))
|
|
}
|
|
}
|