def main(): print(funcA(funcB(funcC("from simple package main"))))
def main(): print(funcA("Do something"))
def main(): print(funcA(funcB(funcC("Do more"))))
def test_funcA(): assert funcA("foo") == "packagewdependency:module:funcA: foo"
def allFuncs(): print( funcA(funcB( funcC("successfully used this package and its dependency"))))