Advertisement
hesl

Value

Dec 15th, 2019
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.17 KB | None | 0 0
  1. // File name: Value.java
  2.  
  3. public class Value extends Expression {
  4.     public int value;   // Always a positive number
  5.  
  6.     public Value(int value) {
  7.         this.value = value;
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement