发布于 2014-06-17 02:05:18 | 95 次阅读 | 评论: 0 | 来源: 网友投递
Objeck 向对象程序设计语言
Objeck 是一个计算机面向对象程序设计语言,Objeck 把所有的数据类型都当成是对象,包含一个编译器和虚拟机,具有内存管理和JIT编译器。
Objeck 3.3.2_1 发布,此版本包括一些 bug 修复和小的功能改进:
The "+=" String append operator now supports the following types: String, Byte, Char, Int, Float, and Bool.
An issue with the debugger that caused the "continue" command to skip some breaks in loops was fixed.
A parsing bug with the new unary "<>" or "!" operator was fixed
Objeck 是一个计算机面向对象程序设计语言,Objeck 把所有的数据类型都当成是对象,包含一个编译器和虚拟机,具有内存管理和JIT编译器。
示例代码:
bundle Default {
class SayHello{
function : Main(args : String[]), Nil {
"Hello World!"->PrintLine();
}
}
}