This quick tutorial shows you how to get user input from your application. Open up a new application and write
TextWindow.WriteLine("Enter your name")
This is a prompt to the user. You can write anything.
name = TextWindow.Read()
This creates a variable named name and sets its value to whatever the user types in the command prompt.
TextWindow.WriteLine("Hello " + name)