--- title: module name here keywords: fastai sidebar: home_sidebar summary: "API details." description: "API details." nb_path: "nbs/00_core.ipynb" ---
{% raw %}
{% endraw %} {% raw %}

say_hello[source]

say_hello(to)

Say hello to somebody

{% endraw %} {% raw %}
'Hello Sylvain!'
{% endraw %} {% raw %}
assert say_hello("Jeremy")=="Hello Jeremy!"
{% endraw %} {% raw %}

class HelloSayer[source]

HelloSayer(to)

Say hello to to using say_hello

{% endraw %} {% raw %}
{% endraw %} {% raw %}

HelloSayer.say[source]

HelloSayer.say()

Do the saying

{% endraw %} {% raw %}
o = HelloSayer("Alexis")
o.say()
'Hello Alexis!'
{% endraw %}