| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
9年前发布

基于类的脚本语言:Wren

Wren 是一个小型快速基于类的脚本语言,相当于 Lua 大小的 Smalltalk。

IO.print("Hello, world!")class Wren {    adjectives = ["small", "clean", "fast"]    languageType {      "scripting"    }  }
  • Wren is small. The codebase is under 4,000 semicolons which keeps the language and libraries small enough to fit in your head. You can skim the whole thing in one sitting.

  • Wren is clean. The codebase is small, but not dense. It is readable and lovingly-commented. It's written in warning-free standard C99.

  • Wren is fast. A fast single-pass compiler to tight bytecode, and a compact object representation help Wren compete with other dynamic languages.

  • Wren is class-based. There are lots of scripting languages out there, but many have unusual or non-existent object models. Wren places classes front and center.

  • Wren is a scripting language. Wren is intended for embedding in applications. It has no dependencies, a small standard library, and an easy-to-use C API.


项目主页:http://www.open-open.com/lib/view/home/1420290565875

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1420290565875.html
Wren 脚本/动态语言