Skip to content

Instantly share code, notes, and snippets.

@karthikAdaptavant
Last active July 1, 2023 12:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karthikAdaptavant/4949738f82d5b8d2d89a6efc3516652f to your computer and use it in GitHub Desktop.
Save karthikAdaptavant/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