core

Core module of til
The autoreload extension is already loaded. To reload it, use:
  %reload_ext autoreload

source

foo

 foo ()

source

say_hello

 say_hello (to)

Say hello to somebody

say_hello("Isaac")
'Hello Isaac!'
assert say_hello("Hamel") == "Hello Hamel!"
from fastcore.test import *

test_eq(say_hello("Hamel"), "Hello Hamel!")
from IPython.display import display,SVG

display(SVG('<svg height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40"/></svg>'))


source

HelloSayer

 HelloSayer (to)

Say hello to to using say_hello


source

HelloSayer.say

 HelloSayer.say ()

Say hello to to using say_hello