class PropertiesSample {
static main (arags) {
 	SampleDto sd = SampleDto();
	sd.title = "First Groovy";
	println "title:" + sd.title;
	println "url:" + sd.url;

	Date date = new Date();
	println "time;" date.time
	}
   }

class SampleDto {
	def title
	def url = "http://w...content-available-to-author-only...o.jp";
	}
  }


