Cosmo/README.md

45 lines
1.1 KiB
Markdown
Raw Normal View History

2020-10-28 05:16:30 +00:00
# Cosmo
[![AppVeyor](https://ci.appveyor.com/api/projects/status/github/CPunch/Cosmo?svg=true)](https://ci.appveyor.com/project/CPunch/Cosmo)
2020-12-05 23:58:56 +00:00
Cosmo is a portable scripting language loosely based off of Lua. Cosmo easily allows the user to extend the language through the use of Proto objects, which describe the behavior of Objects. For example the following is a simple Vector Proto which describes behavior for a Vector-like object.
2020-10-28 05:16:30 +00:00
```lua
2020-12-05 23:58:56 +00:00
proto Vector
func __init(self)
2021-01-09 05:53:02 +00:00
self.vector = []
2020-11-20 21:32:12 +00:00
self.x = 0
end
2020-10-28 05:16:30 +00:00
func __index(self, key)
2020-11-20 21:32:12 +00:00
return self.vector[key]
end
func push(self, val)
2020-11-20 21:32:12 +00:00
self.vector[self.x++] = val
end
func pop(self)
2020-11-20 21:32:12 +00:00
return self.vector[--self.x]
end
end
let vector = Vector()
2020-11-20 21:32:12 +00:00
for (let i = 0; i < 4; i++) do
vector:push(i)
2020-11-20 21:32:12 +00:00
end
for (let i = 0; i < 4; i++) do
print(vector:pop() .. " : " .. vector[i])
2020-11-20 21:32:12 +00:00
end
```
2021-01-09 05:53:02 +00:00
```
3 : 0
2 : 1
1 : 2
0 : 3
```
2020-11-20 21:32:12 +00:00
# C API
The Cosmo C API is currently undocumented, however as soon as development has reached a stable state documentation on full language features and the C API will start.