struct _9table: View {
let digits: [Int] = [1,2,3,4,5,6,7,8,9]
var body: some View {
VStack{
ForEach(self.digits, id: \.self) { first in
ForEach(self.digits, id: \.self) { second in
if second > first {
Text("\(first)+\(second)=\(first+second)")
}
}
}
}
}
}