DawolangPrint typedef

DawolangPrint = String Function(String msg, String msg2)

A typedef, or function-type alias, gives a function type a name that you can use when declaring fields and return types. Because typedefs are simply aliases, they offer a way to check the type of any function. typedef Compare = int Function(Object a, Object b); TODO Typedef practicing. Function type returning String

Implementation

typedef DawolangPrint = String Function(String msg, String msg2);