A+B: Difference between revisions

Content deleted Content added
Chkas (talk | contribs)
No edit summary
Line 2,349: Line 2,349:
Enter two integers separated by space(s) or q to quit: q
Enter two integers separated by space(s) or q to quit: q
</pre>
</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++}}==
=={{header|L++}}==