Comma quibbling: Difference between revisions

m
(→‎{{header|TXR}}: Handle empty list by making destructuring match for last optional.)
Line 1,509:
 
=={{header|Gambas}}==
'''[https://gambas-playground.proko.eu/ You can run this code. Copy the code, click this link, paste it in and press 'Run !']'''
<lang gambas>Public Sub Main()
Dim sInput As String[] = ["", "ABC", "ABC DEF", "ABC DEF G H"]
Line 1,531 ⟶ 1,532:
ABC DEF G H = {ABC,DEF,G and H}
</pre>
 
=={{header|Go}}==
The blog mentioned code maintenence. The idea here is to make the code easy for maintainers to understand by making it correspond as directly as possible to the problem description.
Anonymous user