把 Groovy 代码转换成:JavaScript Grooscript
jopen
9年前
Grooscript 可以把 Groovy 代码转换成 JavaScript 代码 (Groovy 2.x to Javascript ECMAScript 5)。
在线转换:http://grooscript.org/conversions.html
示例:
//List def max = [1, 3, 8].collect { it * 2 }.max() println "Maximum double is: $max" assert max == 16 //Traits example trait FlyingAbility { String fly() { "I'm flying!" } } class Bird implements FlyingAbility {} def b = new Bird() println b.fly() assert b.fly() == "I'm flying!"