首页 > 代码库 > TestGroovy.groovy

TestGroovy.groovy

s

 

 1 /**
 2  * 
 3  */
 4 package com.iteye.lindows.mysql
 5 
 6 /**
 7  * @author Lindows
 8  *
 9  */
10 class TestGroovy {
11 
12     static main(args) {
13 
14         def var = "HelloWorld"
15         println "${var},${var.class}"
16         
17         println "================"
18         
19         var = true
20         println "${var}"  
21         
22               
23 
24     }
25 }

 

 

end

TestGroovy.groovy