F# 中位类型的正确语法是什么,只有两个可能的值:0 和 1。我试过了;
type bit =
| 0
| 1
并且错误消息是error FS0010: Unexpected integer literal in union case
。我需要使用 [<Literal>]
吗?
我收到了不同的错误消息:error FS0010: Unexpected integer literal in union case. Expected identifier, '(', '(*)' or other token.