Cosmo:基于Lua的可嵌入式脚本语言 源码
宇宙 Cosmo是一种宽松的基于Lua的可移植脚本语言。 Cosmo允许用户通过使用描述对象行为的Proto对象轻松扩展语言。例如,以下是一个简单的Vector Proto,它描述了类似于Vector的对象的行为。 proto Vector function __init ( self ) self . vector = [] self . x = 0 end function __index ( self , key ) return self . vector [key] end function push ( self , val ) self . vector [ self . x ++ ] = val end function pop ( self )
文件列表
Cosmo-main.zip
(预估有个51文件)
Cosmo-main
docs
stdlib.md
6KB
intro.md
867B
control.md
2KB
types.md
1KB
operators.md
2KB
objects.md
4KB
main.c
4KB
appveyor.yml
518B
暂无评论