``` Dart void foo() { bar("Hello Word"); } ``` you can ask to define bar has a function but you can not ask to define it as a parameter to foo expected code: ``` Dart void foo(void Function(String) bar) { bar("Hello Word"); } ```