A+B: Difference between revisions

154 bytes added ,  5 years ago
no edit summary
No edit summary
Line 2,349:
Enter two integers separated by space(s) or q to quit: q
</pre>
 
=={{header|KQL}}==
<lang KQL>
datatable(Input:string)[
'2 2',
'3 2'
]
| parse Input with a:int ' ' b:int
| project Input, Output = a + b
</lang>
 
=={{header|L++}}==
Anonymous user