tests/hello.py
author Dmitriy Morozov <dmitriy@mrzv.org>
Mon, 04 Apr 2011 12:56:15 -0700 (2011-04-04)
changeset 189 a46bf1c7f346
parent 187 5e96ab1087da
permissions -rw-r--r--
Merged upstream
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
187
5e96ab1087da that would be 2.2, add info to changelog
Alexander Solovyov <alexander@solovyov.net>
parents:
diff changeset
     1
from opster import command
5e96ab1087da that would be 2.2, add info to changelog
Alexander Solovyov <alexander@solovyov.net>
parents:
diff changeset
     2
5e96ab1087da that would be 2.2, add info to changelog
Alexander Solovyov <alexander@solovyov.net>
parents:
diff changeset
     3
@command(usage="%name [options]")
5e96ab1087da that would be 2.2, add info to changelog
Alexander Solovyov <alexander@solovyov.net>
parents:
diff changeset
     4
def hello(name=('n', 'world', 'your name')):
5e96ab1087da that would be 2.2, add info to changelog
Alexander Solovyov <alexander@solovyov.net>
parents:
diff changeset
     5
    """
5e96ab1087da that would be 2.2, add info to changelog
Alexander Solovyov <alexander@solovyov.net>
parents:
diff changeset
     6
    Hello world continues the long established tradition
5e96ab1087da that would be 2.2, add info to changelog
Alexander Solovyov <alexander@solovyov.net>
parents:
diff changeset
     7
    of delivering simple, but working programs in all
5e96ab1087da that would be 2.2, add info to changelog
Alexander Solovyov <alexander@solovyov.net>
parents:
diff changeset
     8
    kinds of programming languages.
5e96ab1087da that would be 2.2, add info to changelog
Alexander Solovyov <alexander@solovyov.net>
parents:
diff changeset
     9
    """
5e96ab1087da that would be 2.2, add info to changelog
Alexander Solovyov <alexander@solovyov.net>
parents:
diff changeset
    10
    print "Hello %s" % name
5e96ab1087da that would be 2.2, add info to changelog
Alexander Solovyov <alexander@solovyov.net>
parents:
diff changeset
    11
5e96ab1087da that would be 2.2, add info to changelog
Alexander Solovyov <alexander@solovyov.net>
parents:
diff changeset
    12
if __name__ == "__main__":
5e96ab1087da that would be 2.2, add info to changelog
Alexander Solovyov <alexander@solovyov.net>
parents:
diff changeset
    13
    hello()
5e96ab1087da that would be 2.2, add info to changelog
Alexander Solovyov <alexander@solovyov.net>
parents:
diff changeset
    14