<% rand = new Random() String strCssColorBackground = "rgb(${rand.nextInt(256)}, ${rand.nextInt(256)}, ${rand.nextInt(256)} )" String strCssColorText = "rgb(${rand.nextInt(256)}, ${rand.nextInt(256)}, ${rand.nextInt(256)} )" String strCssColorH1Background = "rgb(${rand.nextInt(256)}, ${rand.nextInt(256)}, ${rand.nextInt(256)} )" String strCssColorH1Text = "rgb(${rand.nextInt(256)}, ${rand.nextInt(256)}, ${rand.nextInt(256)} )" %>

Random Colors, <% println "randcolor.gsp" %>

strCssColorBackground: ${strCssColorBackground}
strCssColorText: ${strCssColorText}
strCssColorH1Background: ${strCssColorH1Background}
strCssColorH1Text: ${strCssColorH1Text}

<% wrd = "Groovy" for (i in wrd){ %> <%=i%>
<%} %>