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

10 lines
231 B
Python

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