Core functionality

say_hello[source]

say_hello(subject:str)

Say hello to somebody.

Args: subject: who to say hello to.

Returns: A friendly greeting as a string.

test_eq(say_hello("Rory"), "Hello Rory!")

Here's some more markup.

  • Point 1
  • Point 2

Interesting numbered list:

  1. this
  2. that
  3. the other

say_hello_twice[source]

say_hello_twice(subject)

Says hello twice using say_hello.

test_eq(say_hello_twice("Momo"), "Hello Momo! Hello Momo!")

positive_affirmation[source]

positive_affirmation()

Say some words of encouragement.

test_eq(positive_affirmation(), "You can do it!!!")