Embeddable scripting language loosely based off of Lua
Go to file
CPunch e0d51c191f renamed cosmoV_makeObject 2020-12-05 17:55:09 -06:00
examples updated README 2020-11-20 15:32:12 -06:00
src renamed cosmoV_makeObject 2020-12-05 17:55:09 -06:00
.gitignore removed .vscode 2020-11-13 17:54:41 -06:00
LICENSE.md Initial commit 2020-10-28 00:16:30 -05:00
Makefile fixed clang warnings 2020-11-17 13:17:23 -06:00
README.md fixed README 2020-11-20 15:37:46 -06:00

README.md

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 class which describes behavior for a Vector-like object.

class 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.