Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. public class Literal : IExpression {
  2. internal double Value { get; set; }
  3.  
  4. public Literal(double value) {
  5. Value = value;
  6. }
  7. public void Accept(IExpressionVisitor visitor) {
  8. visitor.Visit(this);
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement