RosettaCodeData/Task/Comma-quibbling/Maple/comma-quibbling-2.maple

12 lines
282 B
Text
Raw Permalink Normal View History

2015-02-20 09:02:09 -05:00
> Quibble([]);
"{}"
> Quibble( [ "ABC" ] );
"{ABC}"
> Quibble( [ "ABC", "DEF" ] );
"{ABC and DEF}"
> Quibble( ["ABC", "DEF", "G", "H"] );
"{ABC, DEF, G and H}"