简体中文
Groovy代码示例
约 56 字小于 1 分钟
2026-01-09
class PubLibiNwxp {
//对外提供的方法
static String action() {
return "success"
}
//对外提供的方法
String getToken() {
return "xxx"
}
//debug 时候的入口方法
static void main(String[] args) {
String ret = action();
log.info(ret)
}
}