2020-10-28 05:16:30 +00:00
# Cosmo
2021-03-16 20:05:20 +00:00
[![AppVeyor ](https://ci.appveyor.com/api/projects/status/github/CPunch/Cosmo?svg=true )](https://ci.appveyor.com/project/CPunch/Cosmo)
2023-05-29 02:11:52 +00:00
## Usage
```
Usage: ./bin/cosmo [-clsr] [args]
available options are:
-c < in > < out > compile < in > and dump to < out >
-l < in > load dump from < in >
-s < in... > compile and run < in... > script(s)
-r start the repl
```
## What is a '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
2021-01-12 23:49:16 +00:00
```lua
2020-12-05 23:58:56 +00:00
proto Vector
2023-02-09 21:58:25 +00:00
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
2023-02-09 21:58:25 +00:00
func __index(self, key)
2020-11-20 21:32:12 +00:00
return self.vector[key]
end
2023-02-09 21:58:25 +00:00
func push(self, val)
2020-11-20 21:32:12 +00:00
self.vector[self.x++] = val
end
2023-02-09 21:58:25 +00:00
func pop(self)
2020-11-20 21:32:12 +00:00
return self.vector[--self.x]
end
end
2023-02-09 21:58:25 +00:00
let vector = Vector()
2020-11-20 21:32:12 +00:00
2023-02-09 21:58:25 +00:00
for (let i = 0; i < 4 ; i + + ) do
2021-01-12 23:49:16 +00:00
vector:push(i)
2020-11-20 21:32:12 +00:00
end
2023-02-09 21:58:25 +00:00
for (let i = 0; i < 4 ; i + + ) do
2021-01-12 23:49:16 +00:00
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
2023-05-29 02:11:52 +00:00
```