Embeddable scripting language loosely based off of Lua
Go to file
cpunch 3890c9dd1e Refactored cosmoO_equals
This sets up room for the '__equal' metamethod to be added

- cosmoO_equals now requires the state to be passed
- cosmoV_equals now requires the state to be passed
- cosmoT_get now requires the state to be passed
2021-02-19 17:04:23 -06:00
docs Update standard library documentation 2023-11-03 22:55:14 -05:00
examples Added strings.cosmo example 2021-01-17 14:11:05 -06:00
src Refactored cosmoO_equals 2021-02-19 17:04:23 -06:00
.gitignore Added CMake support 2021-02-11 20:34:04 -06:00
CMakeLists.txt Added CMake support 2021-02-11 20:34:04 -06:00
LICENSE.md Initial commit 2020-10-28 00:16:30 -05:00
main.c Added CMake support 2021-02-11 20:34:04 -06:00
Makefile Added C99 support, refactored headers 2021-02-15 16:20:04 -06:00
README.md Updated examples and README to use proper syntax 2021-01-12 17:49:16 -06:00

Cosmo

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.

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)
        return self.vector[--self.x]
    end
end

var vector = Vector()

for (var i = 0; i < 4; i++) do
    vector:push(i)
end

for (var i = 0; i < 4; i++) do
    print(vector:pop() .. " : " .. vector[i])
end
3 : 0
2 : 1
1 : 2
0 : 3

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.