on startUp
	put " " into theCommand
	repeat while theCommand <> "quit"
		put return &return& "C:\> "
		put stdin into theCommand
		put item 1 of theCommand into thePerformer
		put item 2 of theCommand into theCommand
		if theCommand = "" then
			put thePerformer into theCommand
			put "you" into thePerformer
		end if
		put return& "actor:" && thePerformer
		put return& "action:" && theCommand
		put word 1 of theCommand into theVerb
		put return& "verb:" && theVerb
		if theVerb = "look" then
			put word 2 of theCommand into thePrep
			put return& "prep:" && thePrep
			if thePrep = "at" then
				put word 3 of theCommand into targetObject
				put return & "I'm looking at the" && targetObject & "."
			else
				put return & "Expected 'at' after 'look'."
			end if
		else
			if theCommand <> "quit" then
				put return & "		I don't know what " & word 1 of theCommand & " means."
			end if
		end if
	end repeat
	put return & "That's all."
end startUp