Firefox 135.0 发布
Objeck 3.3.5_2 发布,此版本添加了 Ubuntu 和 Debian 类型 Linux 发行版本的安装程序,还有一些改进和 bug 修复,值得关注的改进如下:
- Finally, added installers for Ubuntu and Debian based Linux distributions overhauling the build system (new)
- Optimized stack operations for floating point operations (new)
- Added missing compiler check for array assignment to array element (bug/medium)
- Overhauled the build system and release management process (misc)
此版本现已提供下载了:objeck-lang_3.3.5-2.zip,更多内容请看这里。
Objeck 是一个计算机面向对象程序设计语言,Objeck 把所有的数据类型都当成是对象,包含一个编译器和虚拟机,具有内存管理和JIT编译器。
示例代码:
bundle Default {
class SayHello{
function : Main(args : String[]), Nil {
"Hello World!"->PrintLine();
}
}
}