Microsoft Small Basic

Program Listing: XZM675
x = "sup nerd"
TextWindow.WriteLine ("Nerd Greeting Program")
x = Text.ConvertToUpperCase (x)
TextWindow.WriteLine ("So, what's your name?")
y = TextWindow.Read()
y = Text.Append ("so, ",y)
TextWindow.WriteLine (y)
TextWindow.WriteLine (x)
TextWindow.WriteLine ("press ENTER to quit app.")
z = TextWindow.Read()
TextWindow.WriteLine (":)")