Author: Stan Eisenstat
Subject: Re: [Cs223] Questions
Date: Friday, 31 Jan 2020, 21:32:15
> Message Posted By: Unknown > > I wanted to confirm if the regular submit command should be used when we > want to submit our final program. Correct. ===== > Also, why are stars treated as spaces in some cases? > When I test a*is with the staff solution, it outputs > a:1 > is:1 > > I thought identifiers can only have letters, numbers, and underscore? Yes, an identifier cannot contain a *, which means that the identifier that starts with a must end there. That explains the first line of the output. The second line then follows. --Stan-PREV INDEX NEXT