Download List

项目描述

2e is an experimental language designed to be as
simple as possible, but still allow for all the
standard programming functions (expression
evaluation, flow control, functions, variables,
and arrays, etc). The language flow control is
handled via a C style conditional operator (expr ?
expr2 : expr3) for if/else processing, and a
variant iterative conditional (expr ?? expr2 :
expr3) for looping. Parentheses are used for
grouping throughout, and both built-in and
user-defined functions are supported. The language
itself is referred to as 2e, while the interpreter
is called ee. The interpreter is designed to be
used stand-alone, and it can also be easily
embedded within another application.

系统要求

System requirement is not defined
Information regarding Project Releases and Project Resources. Note that the information here is a quote from Freecode.com page, and the downloads themselves may not be hosted on OSDN.

2006-12-26 19:28
0.8.2

这解释了电子工程专辑发布包括几个新的内置的字符串处理函数(strcpy,strcat,strins,printf,sprintf,fprintf和strmatch)。这将有助于让更多的2e作为一般的脚本语言的目的非常有用。运算符增加了(按位与,或,不是,异或,左移和右移),而且类似于C equivilants。最后,经营者处理程序代码已经进行了改革,在350%至500的结果,在代码执行性能%的增幅。
标签: Major feature enhancements
This release of the ee interpreter includes several new built-in string handling functions (strcpy, strcat, strins, printf, sprintf, fprintf, and strmatch). This should help make 2e more useful as a general purpose scripting language. Bitwise operators have been added (bitwise AND, OR, NOT, XOR, shift left, and shift right), and are similar to the C equivilants. Finally, the operator handler code has been overhauled, which results in a 350% to 500% increase in code execution performance.

2006-12-11 17:55
0.8.1

几个新的功能被添加到内置的功能库,包括分裂()(解析文本字符串),getenv(),系统()的ReadLine()和setlen()。能够检索命令行参数,并建立了不同类型的数组增加。此前,默认的是只装载通用阵列,现在你可以定义整数,字符,或浮点阵列。该网站也进行了改革,使得它包含了一个更完整的语言教程和参考一节。
标签: Minor feature enhancements
Several new functions were added to the built-in
function library, including split() (for parsing
text strings), getenv(), system(), readline(), and
setlen(). The ability to retrieve command line
arguments and to create various typed arrays was
added. Previously, the default was to load up only
general-purpose arrays; now you can define
integer, character, or floating point arrays. The
Web site has also been overhauled, so that it
includes a more complete language tutorial and
reference section.

2006-11-27 05:24
0.8

标签: Initial freshmeat announcement

Project Resources