x = 2 if stringy: x = '2' print x+x # 4 or 22???
int x = 2; if(stringy) string x = "2"; print x+x; // 4 (string x is out of scope)