ISCE_INSAR/examples/applications/greeter2/greetings/EnglishStandard.py

10 lines
240 B
Python

from iscesys.Component.Component import Component
class EnglishStandard(Component):
def __call__(self, name=None):
if name:
print("Hello, {0}!".format(name))
else:
print("Hello!")
return