Last active
July 1, 2023 12:18
-
-
Save karthiikmk/4949738f82d5b8d2d89a6efc3516652f to your computer and use it in GitHub Desktop.
Documentation with DocC
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// This is an example function using DocC | |
/// - Parameters: | |
/// - firstParam: Description of the first parameter | |
/// - secondParam: Description of the second parameter | |
/// - Returns: Description of what this function returns | |
func exampleFunction(firstParam: Int, secondParam: String) -> Bool { | |
// Function implementation here | |
return true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment