The goddamn nbdev tuto following

Functions

say_hi[source]

say_hi(to)

Enthusiastically say hi to someone

say_hi("Bitz")
'Hii Bitz!'
test_eq(say_hi("Alex"),"Hii Alex!")

Classes

class SoothSayer[source]

SoothSayer(to)

Yell hi at someone until they are annoyed enough to either reply or flee. It calls say_hi

SoothSayer.say[source]

SoothSayer.say()

Do your thing, stalker!

sayer = SoothSayer("Maciej")
sayer.say()
'Hii Maciej!'