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(); } }}
评论删除后,数据将无法恢复
Objeck 3.3.2_1 发布,程序设计语言
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();
}
}
}