Cpy - 提供一种用C语法来编写Python代码
jopen
12年前
对于想利用 Python 执行引擎以及丰富的类库资源, 同时又不喜欢 Python 语法的程序员, cpy 提供了一个解决方案. Cpy 是一种类 C 语法的脚本语言, 拥有 Python 的所有类库.
class A{ public a = 0; public static s = 1; function init(a){ this.a = a; print 'A init', a; } function f(a, b=1){ return a + b; } } print A.s; // 1 a = new A(1); // A init 1 print a.f(1, 2); // 3