Single or Double Quotation Marks in Groovy
In Groovy you can choose between single quotation marks ' or double quotation marks " to represent a string. As opposed to Java, where single quotation marks denote a single character and double quotation marks denote a string. Groovy provides groovy.lang.GString which...
