Output in Logo

Example: Output in Logo

On the first line, the double quote is used so Logo doesn't think Hello is a procedure. If you want to print more than one word, enclose it in brackets.


	print "Hello
	print [How are you today?]
	

Output:

  Hello
  How are you today?