Microsoft Small Basic

Program Listing: PJN900
TextWindow.WriteLine ("idk what I'm doing now")
TextWindow.WriteLine ("by Gors")
TextWindow.WriteLine ("")
Start:
TextWindow.Write ("everybody loves _____. Fill in the blank. >")
x = TextWindow.Read()
y = Text.Append ("everybody loves ",x)
TextWindow.Write (y)
TextWindow.Write (". Is that correct? Type 'yes' to confirm. >")
z = TextWindow.Read()
If z = "yes" Then
TextWindow.WriteLine ("You liar.")
Goto Endprogram
Else
TextWindow.WriteLine ("Then,")
EndIf
Goto Start
Endprogram:
TextWindow.WriteLine ("")