Created
July 16, 2019 23:02
-
-
Save carson-katri/bd392a42ab4868b3d7bb347dd59813b0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@_functionBuilder | |
struct GreetingBuilder { | |
static func buildBlock(_ items: String...) -> [String] { | |
return items.map { "Hello \($0)" } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment