CPunch 27818b3788 cosmoV_throw() now resets the vm stack as well
also a minor GC bug in cosmoO_newError was fixed.

i'm going to try to phase out cosmoM_freezeGC & friends
since that would cause hell with this new
error handling solution. the only thing still using it is the GC.
2023-08-29 16:48:38 -05:00
2023-06-01 22:22:44 -05:00
2023-02-09 12:32:48 -06:00
2023-06-01 22:22:44 -05:00
2023-06-01 22:22:44 -05:00
2020-10-28 00:16:30 -05:00
2023-08-29 14:07:45 -05:00
2023-08-29 14:07:45 -05:00
2023-05-28 21:11:52 -05:00

Cosmo

AppVeyor

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'?

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
    func __init(self)
        self.vector = []
        self.x = 0
    end

    func __index(self, key)
        return self.vector[key]
    end

    func push(self, val)
        self.vector[self.x++] = val
    end 

    func pop(self)
        return self.vector[--self.x]
    end
end

let vector = Vector()

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

for (let i = 0; i < 4; i++) do
    print(vector:pop() .. " : " .. vector[i])
end
3 : 0
2 : 1
1 : 2
0 : 3
Description
Embeddable scripting language loosely based off of Lua
Readme 1.6 MiB
Languages
C 99.6%
CMake 0.2%
Makefile 0.2%