function main() {
	// Get the person's name.
	var name=get("Please enter in your name.")
	
	// If name is equal to null, that means they pressed cancel.
	if(name==null)
		display("You didn't enter in a name.")

	// Otherwise, name is not equal to null and you can display it.
	else display("Hello "+name+".")
}
