Skip to content

Instantly share code, notes, and snippets.

@amieres
Last active August 29, 2015 14:01
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 amieres/de365ab0e98be6d91df5 to your computer and use it in GitHub Desktop.
Save amieres/de365ab0e98be6d91df5 to your computer and use it in GitHub Desktop.
private void button1_Click(object sender,EventArgs e) {
Parser P = new Parser(this.textBox1.Text);
if (P.Parse())
this.textBox2.Text = "Success!";
else
this.textBox2.Text = "Failed at " + P.Position.ToString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment