package main

import "fmt"

func main() {
	s := "test"
	// s = 1
	fmt.Println("Hello, 世界")
	fmt.Println(s)
}