Files
Document-Management-System-…/vendor/scrivo/highlight.php/test/detect/swift/default.txt
2021-04-07 19:25:18 -04:00

16 lines
297 B
Plaintext
Vendored

import Foundation
@objc class Person: Entity {
var name: String!
var age: Int!
init(name: String, age: Int) {
/* /* ... */ */
}
// Return a descriptive string for this person
func description(offset: Int = 0) -> String {
return "\(name) is \(age + offset) years old"
}
}