理由一:Rush支持类似Python的无花括号语法,并且兼容60%的C++语法,Rush自身可用标准C++编译器编译或者自我编译(自举)。
理由二:Rush既可编译运行又可解释运行,它以静态类型为主,没有GC,并且支持翻译为C++,可达到与C++接近的性能。
理由三:它以Lisp作为中间层,支持mixin、宏、元编程以及各种动态特性,并且同时支持call by name、call by need和call by value。
理由四:Rush的设计目标是简洁、快速、稳定,完全开源,它的源码结构比lua简单得多,但实现的功能不比lua少。
Rush的整体设计:
define ← =
void insertion_sort(rstr& a):
for j ← 1; j<a.count; j ← j+1
key ← a[j]
i ← j-1
while i>=0 && a[i]>key
a[i+1] ← a[i]
i ← i-1
a[i+1] ← key
bool next_permutation<T>(rbuf<T>& v):
if v.count<=1
return false
next=v.count-1
for
temp=next
next--
if v[next]<v[temp]
mid=v.count-1
for !(v[next]<v[mid])
mid--
swap<T>(v[next],v[mid])
reverse<T>(v,temp)
return true
if next==0
reverse<T>(v,0)
return false
void main():
int a
int b
[int,=,[a,1]]
[int,=,[b,2]]
[rf,print,[[int,+,[a,b]]]]
static rbool inherit_proc(tsh& sh,tclass& tci,int level=0)
{
if(level++>c_rs_deep)
return false;
if(tci.vfather.empty())
return true;
rbuf<tword> v;
for(int i=0;i<tci.vfather.count();i++)
{
rstr cname=tci.vfather[i].vword.get(0).val;
tclass* ptci=zfind::class_search(sh,cname);
if(ptci==null)
{
ptci=zfind::classtl_search(sh,cname);
if(ptci==null)
return false;
}
if(!inherit_proc(sh,*ptci,level))
return false;
v+=ptci->vword;
}
v+=tci.vword;
tci.vword=v;
return true;
}
Rush支持多种运行方式,方法如下:
- cd到bin目录
- 命令行敲入 rush -jit ..\src\example\test\1.rs
- cd到bin目录
- 命令行敲入 rush ..\src\example\test\1.rs
- cd到bin目录
- 命令行敲入 rnasm ..\src\example\test\1.rs
- cd到bin目录
- 命令行敲入 gpp ..\src\example\test\1.rs
- 运行ext\ide\SciTE.exe
- 点击File->Open
- 选择src\example\test\1.rs,点击“打开”
- 按F5运行程序(或者F7生成EXE)
- 点击 http://roundsheep.github.io/rush/
- 点击run按钮,稍等几秒会显示运行结果
- 确保安装了clang(3.5或以上)或g++(4.8或以上)
- cd到bin目录
- 命令行输入 g++ ../src/rush.cxx -o rush -w -m32 -std=c++11
- 命令行敲入 ./rush ../src/example/test/50.rs
- cd到bin目录
- 命令行敲入 rush -gpp ..\src\example\test\1.rs
- 将生成的src\example\test\1.cpp和ext\mingw\gpp.h两个文件导入xcode
- 根据需要修改main函数,注释掉windows.h头文件
- 确保编译环境为64位windows
- 下载一键安卓工具包并解压到一个无空格无中文的路径(1.1G) http://pan.baidu.com/s/1c0oc3Ws
- 点击create_proj.bat
- 输入工程名如test,等待命令窗口结束
- 点击proj\test\build_cpp.bat
- 等待几分钟命令窗口出现“请按任意键继续”
- 按回车键并等待命令窗口结束
- 成功后会得到proj\test\proj.android\bin\xxx.apk
- 根据需要将Rush翻译得到的CPP文件包含进proj\test\Classes\HelloWorldScene.cpp
- cd到bin目录
- 命令行敲入 rush -gpp64 ..\src\example\64bit_test.rs
- 将生成的src\example\test\64bit_test.cpp导入Visual Studio(或者使用64位的G++)
- 选择x64
- 按F7
Visual Assist智能补全请看视频演示:
http://www.tudou.com/programs/view/40Ez3FuqE10/
##### 重新将Rush编译为JS:
- 确保安装了emscripten
- 打开Emscripten Command Prompt
- cd到Rush主目录
- 命令行敲入 em++ -O3 src\rush.cxx -o rush.html -w --preload-file src -s TOTAL_MEMORY=156777216 -s EXPORTED_FUNCTIONS="['_js_main']"
- 确保安装了 VS2012 update4 或者 VS2013
- 打开src\proj\rush.sln
- 选择Release模式(因为JIT不支持Debug)
- 按F7,成功后会生成bin\rush.exe
- 双击self_test_nasm.bat
- 稍等几分钟后会生成bin\rush_nasm.exe(实际上Rush完成自举只需要5秒,瓶颈在NASM,据说Chez Scheme自举也是5秒)
- 注意自举后仅NASM模式和GPP模式可用
- 双击self_test_gpp.bat
- 稍等几分钟后会生成bin\rush_gpp.exe(使用命令gpp_build ..\src\rush.cxx可13秒自举,只不过自举后第二次再自举需要60秒,-O0优化)
- 注意自举后仅NASM模式和GPP模式可用
- cd到bin目录
- 命令行敲入 rush -gpp ..\src\example\test\1.rs
- 使用Visual Studio或gdb调试src\example\test\1.cpp
- 双击bin\example_test.bat
Rush没有协议,任何人可以随意使用、复制、发布、修改、改名。
QQ交流群:34269848
E-mail:[email protected]