1 2 3 4 5 6 7 8
func int main() { int a := 1; int b := 2; int x := a + b; b = 100; putint(x); putc('\n'); return 0; }