I defined these two functions in F#
let f t =
match t with
|_ when t = 0 -> 1
|_ -> g t-1
let g t = 1 + (f t)
However, F# compiler didn't accept it. It said that
stdin(9,16): error FS0039: The value or constructor 'f' is not defined
Please help me! Thanks.