Skip to content

Instantly share code, notes, and snippets.

@hamaluik
Created June 1, 2018 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hamaluik/702fdd6f6f058eaf9275faa66fef614a to your computer and use it in GitHub Desktop.
Save hamaluik/702fdd6f6f058eaf9275faa66fef614a to your computer and use it in GitHub Desktop.
while let Some(c) = self.chars.peek() {
match c {
'\n' => { self.line += 1; },
'"' => { break; },
_ => { self.advance(); }
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment