summaryrefslogtreecommitdiff
path: root/tests/examplefiles/unicode.go
blob: d4bef4d18af23cfbaac22a2774de006728c82a71 (plain)
1
2
3
4
5
6
7
8
9
10
package main

import "fmt"

func main() {
    世界 := "Hello, world!"
    さようなら := "Goodbye, world!"
    fmt.Println(世界)
    fmt.Println(さようなら)
}