1

我正在尝试阅读 F# Visual Studio Code 的入门文档显示错误 这里

如果我将鼠标悬停在红色曲线上,我会看到错误消息

The Namespace or module ClassLibraryDemo is not defined"

这是 ClassLibaryDemo.fs 的代码

namespace ClassLibraryDemo

module PigLatin =
    let toPigLatin (word: string) =
        let isVowel (c: char) =
            match c with
            | 'a' | 'e' | 'i' |'o' |'u'
            | 'A' | 'E' | 'I' | 'O' | 'U' -> true
            |_ -> false

        if isVowel word.[0] then
            word + "yay"
        else
            word.[1..] + string(word.[0]) + "ay"
4

1 回答 1

1

执行时请检查 FSI 中的反馈#load ClassLibraryDemo.fs。您应该看到如下内容:

FSI: [Loading c:\Users\*****\Documents\Source\SO2017\SO180207\TestModule.fs] namespace FSI_0002.TestModule val testFunc : unit -> unit

FSI 很可能找不到您的文件,因为文件名拼写错误或文件位于另一个目录中。可能有其他可能的原因导致无法看到命名空间,例如没有恢复项目,或者缓存损坏(我有一段时间没看到了)。

于 2018-02-10T02:16:12.240 回答