質問編集履歴

1

エラーの表示を足した

2019/10/27 14:06

投稿

tom._
tom._

スコア7

test CHANGED
File without changes
test CHANGED
@@ -3,6 +3,16 @@
3
3
  print(4/3*3.14*6378*6376*6378)
4
4
 
5
5
  これを計算するとエラーが出ます。
6
+
7
+ The compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
8
+
9
+ デバックエリアにはこのエラーが出ます
10
+
11
+ error: MyPlayground.playground:4:1: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
12
+
13
+ print(4/3*3.14*6378*6378*6378)
14
+
15
+ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6
16
 
7
17
  なぜでしょうか?
8
18