on startUp
	put "What a world this is,there's work" &return& "I can't believe it's so cool." into myVar
	put "# of words:" && the number of words of myVar &return
	put "'" into the itemDelimiter
	put "# of items:" && the number of items of myVar &return
	put "# of lines:" && the number of lines of myVar &return
	put "# of chars:" && the number of characters of myVar &return
	put "," into the itemDelimiter
	put "cruel!" into word 6 of line 2 of item 2 of myVar
	put myVar
end startUp