Cosmo/README.md

43 lines
993 B
Markdown
Raw Normal View History

2020-10-28 05:16:30 +00:00
# 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
2020-11-20 21:32:12 +00:00
function __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
2020-11-20 21:32:12 +00:00
function __index(self, key)
return self.vector[key]
end
function push(self, val)
self.vector[self.x++] = val
end
function pop(self)
return self.vector[--self.x]
end
end
var vector = Vector()
for (var i = 0; i < 4; i++) do
vector:push(i)
2020-11-20 21:32:12 +00:00
end
for (var 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.