7 lines
158 B
Python
7 lines
158 B
Python
from smnp.type.model import Type
|
|
from smnp.type.value import Value
|
|
|
|
|
|
def evaluateInteger(integer, environment):
|
|
return Value(Type.INTEGER, integer.value)
|