pyraliddemo.example.hello

HELLO MODULE.

This module includes a hello_world method.

hello_world()str[source]

Hello World.

Return 'Hello World!' string.

Returns

The string 'Hello World!'

Return type

str

Examples

python
>>> from pyraliddemo.example.hello import hello_world
>>> print(hello_world())
Hello World!