Dart编程实例 - 返回函数 Dart编程实例 - 调用函数 Dart编程实例 - 函数参数 Dart编程实例 - 返回函数 void main() { print(test()); } String test() { // function definition return "hello world"; } Dart编程实例 - 调用函数 Dart编程实例 - 函数参数