API details.

Functions

say_hello[source]

say_hello(to)

Say hello to somebody

We can use this to say hello to anyone at all, but let's start with Sylvain.

say_hello("Sylvain")
'Hello Sylvain!'
test_eq(say_hello("Jeremy"), "Hello Jeremy!")

class HelloSayer[source]

HelloSayer(to)

Say hello to to using say_hello

HelloSayer.say[source]

HelloSayer.say()

Do the saying

o = HelloSayer("Alexis")
o.say()
'Hello Alexis!'