如何在Golang中进行多项作业?

时间:2019-05-09 03:52:33

标签: go

x := 1
y := 2
x, y = y, x+y
fmt.Println(x, y)

我本以为输出将是2和4,但是最终输出是2和3。

0 个答案:

没有答案