How is it possible to call a function with parameters without passing in values? [Swift Playground]
问题 Swift Playground provided the following code. How's the speakText(graphic: )called without passing in parameters? (Obviously graphic is already placed in another segment of the code) // Speak the text of graphic. func speakText(graphic: Graphic) { speak(graphic.text) } func addGreeting(touch: Touch) { if touch.previousPlaceDistance < 60 { return } let greetings = ["howdy!", "hello", "hi", "ciao", "yo!", "hey!", "what’s up?"] let greeting = greetings.randomItem let graphic = Graphic(text: