I realize this is slightly pedantic, but the quiz states “Semi-colons on the end of lines are optional in C#?”
This is clearly true; you can write, for example:
void Start () {
print(“Welcome to Number Wizard!”)
;
print(“Pick a number in your head, but don’t tell me!”);
}
And it does, in fact, compile and run fine.
C# requires a semi-colon per statement, but not per line. Maybe this was too subtle for a beginning class, but it’s sometimes an important distinction.
== John ==