RosettaCodeData/Task/Comma-quibbling/Maple/comma-quibbling-2.maple
2015-02-20 09:02:09 -05:00

11 lines
282 B
Text

> Quibble([]);
"{}"
> Quibble( [ "ABC" ] );
"{ABC}"
> Quibble( [ "ABC", "DEF" ] );
"{ABC and DEF}"
> Quibble( ["ABC", "DEF", "G", "H"] );
"{ABC, DEF, G and H}"