12 lines
219 B
Python
12 lines
219 B
Python
from bu4.evaluation.aftervalue import EValue, Evaluable
|
|
|
|
__all__ = ('ENull',)
|
|
|
|
|
|
class ENull(EValue):
|
|
def call(self, argument: Evaluable) -> Evaluable:
|
|
return self
|
|
|
|
def __str__(self):
|
|
return f'?'
|