Comma quibbling: Difference between revisions

Content deleted Content added
Kazinator (talk | contribs)
→‎{{header|TXR}}: Handle empty list by making destructuring match for last optional.
Line 1,509: Line 1,509:


=={{header|Gambas}}==
=={{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()
<lang gambas>Public Sub Main()
Dim sInput As String[] = ["", "ABC", "ABC DEF", "ABC DEF G H"]
Dim sInput As String[] = ["", "ABC", "ABC DEF", "ABC DEF G H"]
Line 1,531: Line 1,532:
ABC DEF G H = {ABC,DEF,G and H}
ABC DEF G H = {ABC,DEF,G and H}
</pre>
</pre>

=={{header|Go}}==
=={{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.
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.