何通りか方法がある。
```go
hello := "こんにちは"
world := "世界"
```
## +演算子
```go
greetingMessage := hello + world
```
## [[fmt.Sprint]]
```go
greetingMessage := fmt.Sprint(hello, world)
```
## [[fmt.Sprintf]]
```go
greetingMessage := fmt.Sprintf("%s%s", hello, world)
```
## [[strings.Join]]
```go
greetingMessage := strings.Join([]string{hello, world}, "")
```