[lang-ref] ( assign_variable ) ( swift )

@Test func assignVariable() {
	// var
	var x = 1
	#expect(x == 1)

	x = 2
	#expect(x == 2)
}