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

10 lines
231 B
Python
Raw Normal View History

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