Skip to content

Instantly share code, notes, and snippets.

@bam6o0
Created July 29, 2017 07:45
Show Gist options
  • Save bam6o0/21f8fa38a4ef87030158eba890616837 to your computer and use it in GitHub Desktop.
Save bam6o0/21f8fa38a4ef87030158eba890616837 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func main() {
var str string
str = "あ"
str = str + "い"
str += "う"
fmt.Println(str)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment