TextWindow.WriteLine("hi whats yo name") name = TextWindow.Read() TextWindow.WriteLine("hi " + name + " im 9 years old, how old r u?") age = TextWindow.ReadNumber() If age > 9 Then TextWindow.Write("u r older than me ") ElseIf age = 9 then TextWindow.Write(" oh you r same as me ") Else TextWindow.Write(" u r younger than me ") EndIf TextWindow.WriteLine("wanna guess riddles?") answer = TextWindow.Read() If answer = "yes" Then TextWindow.WriteLine("hon hon duutai hondloi dere degetei?") answer = TextWindow.Read() If answer = "dog" Then TextWindow.WriteLine("correct!") Else TextWindow.WriteLine("wrong!") EndIf Else TextWindow.WriteLine("too bad chat later") EndIf