This is an old revision of the document!
Swift
Functions
Function parameters need labels when called unless specified with an underscore.
func myFunc(_ name: Int) // call it like myFunc(3)
swift
This is an old revision of the document!
Function parameters need labels when called unless specified with an underscore.
func myFunc(_ name: Int) // call it like myFunc(3)