I couldn't understand the syntax of below code in SwiftUI. It is creating a VStack and last argument is a closure(ViewBuilder). But how does the closure return two Text. Are they a tuple or a array or anything else?
VStack{
Text("Hello, world!")
Text("Hello, world again!")
}