我正在自学 F# 我通常是 C# 程序员。
当我浏览这些章节时,我正在尝试使用(**)
为自己做笔记,但我从评论本身中得到了一个错误。
module Characters
let vowels = ['a', 'e', 'i', 'o', 'u']
printfn "Hex u0061 = '%c'" '\u0061'
(* <------------Error is here, is 'End of file in string embedded in comment begun at or before here'
Character Escape Sequences
Character Meaning
-------------------------------
\' Single Quote
\" Double Quote
\\ Backslash
\b Backspace
\n Newline
\r Carriage Return
\t Horisontal Tab
*)
这是否将评论视为字符串意味着我必须逃避我的评论?