mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
20 lines
386 B
Swift
20 lines
386 B
Swift
/// This function does stuff
|
|
///
|
|
/// - parameter first: The first parameter
|
|
///
|
|
/// - returns: The return value
|
|
func foo(first: Int) -> String {
|
|
return ""
|
|
}
|
|
|
|
let x = "Changing this string should only affect this line"
|
|
|
|
/// This function does other stuff
|
|
///
|
|
/// - parameter first: The first parameter
|
|
///
|
|
/// - returns: The return value
|
|
func bar(first: Int) -> String {
|
|
return ""
|
|
}
|