2009-06-13 5 views

답변

6

단지 여러 줄로 써라. 컴파일러는 들여 쓰기 당 method-body를 추론 할 수 있습니다.

type Example = class 
    static member Foo a b = 
    // ... 
    a + b 
end 
Example.Foo 1 2