次のコード スニペットの val キーワードによってコンパイラ エラーが発生するのはなぜですか? 戻り値を取得して表示する必要があります。
open System
let CylinderVolume radius length =
let pi = 3.14159
length * pi * radius * radius
System.Console.WriteLine(CylinderVolume 5.0 10.0)
val cylinderVolume : int -> int -> int