mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
13 lines
203 B
Python
13 lines
203 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import absolute_import
|
|
|
|
__docformat__ = 'restructuredtext en'
|
|
|
|
|
|
def hello(name):
|
|
return "hello " + name
|
|
|
|
# vim:set et sts=4 ts=4 tw=80:
|