API details: Core module for nlphero package
%load_ext autoreload
The autoreload extension is already loaded. To reload it, use:
  %reload_ext autoreload
from nbdev import *

say_hello[source]

say_hello(to)

def say_hello(to):
    print(f"Hello {to}")
say_hello("Colab")
Hello Colab
say_hello("New Favicon")
Hello New Favicon