let x = 5; let y = 0; if x < 0 { y = x; } else { y = "hello it is smaller"; } print y;