RosettaCodeData/Task/A+B/KQL/a+b.kql
2023-07-01 13:44:08 -04:00

6 lines
115 B
Text

datatable(Input:string)[
'2 2',
'3 2'
]
| parse Input with A:int ' ' B:int
| project Input, Output = A + B