首页 > 建站教程 > dart >  Dart编程实例 - 添加断点正文

Dart编程实例 - 添加断点

Dart编程实例 - 添加断点

void main() {

   int a = 10, b = 20, c = 5;

   c = c * c * c;

   print("$a + $b = ${a+b}");

   print("$a%$b = ${a%b}");  // Add a break point here

   print("$a*$b = ${a*b}");

   print("$a/$b = ${a/b}");

   print(c);

}