rpn-python/token.py

9 lines
161 B
Python

class Token():
def __init__(self, type, value):
self.type = type
self.value = value
def __repr__(self):
return "<{} {}>".format(self.type, self.value)