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

10 lines
240 B
Python
Raw Normal View History

2019-01-16 19:40:08 +00:00
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