blob: 365e0207e3a7cc7a99ad57c5e6d6ad616b3f075b [file] [log] [blame]
class StringCategory {
static String getMd5(String s) {
return "MD5Value";//suppose to be some code that generate md5
}
}
use(StringCategory) {
println "hello world".getMd5()
}