Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. interface IExpressionVisitor
  2. {
  3. void Visit(Literal literal);
  4. void Visit(Addition addition);
  5. }
  6. interface IExpression
  7. {
  8. void Accept(IExpressionVisitor visitor);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement