CSC362 2004S, Lab 5: Tokenizing with java.io.StreamTokenizer Admin: * Class may start a few minutes late tomorrow * Don't forget the talk today at 4:30! Observations: * The default behavior seems to be to consider anything that follows a slash on a line as a comment. [PH/CS] '/ hello' => '' 'hello / there' => 'hello ' * Return values are: -3: 'word' -2: 'number' -1: 'eol' 0: eof positive: ASCII value of single character * To come up with other token types, we have to write something that looks at the word (or number or ...)