Awesome to me that this is valid:
func record(age: Int) { }
func record(year: Int) { }
Naming internal and external parameters separately is interesting too:
func square(of num: Int) -> Int {
return num * num
}
let result = square(of: 4)
Day 7 in the books! #100DaysOfSwiftUI