📜  dartlang 控制台插件 - Dart 代码示例

📅  最后修改于: 2022-03-11 14:48:08.633000             🧑  作者: Mango

代码示例1
import "package:console/console.dart";

void main() {
  // Initialize the Console. Throws an exception if advanced terminal features are not supported.
  Console.init();
  
  // Use the library...
}