Skip to content

Instantly share code, notes, and snippets.

@karthiikmk
Last active July 1, 2023 12:18
Show Gist options
  • Save karthiikmk/4949738f82d5b8d2d89a6efc3516652f to your computer and use it in GitHub Desktop.
Save karthiikmk/4949738f82d5b8d2d89a6efc3516652f to your computer and use it in GitHub Desktop.
Documentation with DocC
/// 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