Groovy (JSR223) 的字符串语法 ⭐⭐⭐⭐⭐1. 单引号字符串(不支持插值)def str = 'Hello World'
def name = 'Tom'
def str2 = 'Hello ${name}' // 输出:
2026-02-28