阅读更多

3顶
0踩

编程语言

原创新闻 ViScript 1.0 Released

2007-10-17 13:02 by 见习记者 taowen 评论(0) 有4269人浏览
ViScript是一个基于.net的元脚本语言。顾名思义就是用来创造脚本语言的框架。项目主页:http://code.google.com/p/viscript/

主要思想很简单:
用方法来创造句法,用句号隔开句子,然后由句子构成脚本。在构成句法方面,支持用下划线表达字符,参数任意位置插入,参数类型可扩展,支持从句,支持引号表示字面意义,支持歧义分析。

未来的发展方向是写一个IDE,并支持重构。

Sample:

Sentence <-> Method

[Scriptable]
void user_login_with_password(string user, string password)


Script <-> Sentences

taowen login with password 123. he send a message hello to qq. qq should receive message hello.

Clause <-> Delegate

[Scriptable]
public void action_repeat_count_times(Clause action, int count)
{
      while (count-- > 0)
      {
            action();
      }
}
3
0
评论 共 0 条 请登录后发表评论

发表评论

您还没有登录,请您登录后再发表评论

相关推荐

Global site tag (gtag.js) - Google Analytics