open "cartoonrabbit.txt" for input as #1
print "reading the file..."
i = 0
while not eof(1)
i = i + 1
    ' get a line of text
    line input #1, text

    ' break into tokens
//    token = {}
//    token[1] = text

//    text = ""

end while
close #1

print i
