Например, я пишу функцию, которую я хочу показать метод добавления. Я хотел подчеркнуть комментарий выше так.
// This is the comment I want to underline
// Adding a few other things you can do with comments would also be helpful
func helpMeUnderlineThisComment(comment: String) -> String {
for char in comment {
if char == comment {
return char.underlined()
}
}
return nil
}