Embeddable scripting language loosely based off of Lua
Go to file
CPunch 6a47c82179 fix more GC bugs 2023-08-29 23:21:52 -05:00
docs update Docs to reflect keyword changes 2023-02-10 20:46:05 -06:00
examples fix this test script 2023-08-29 16:51:04 -05:00
src fix more GC bugs 2023-08-29 23:21:52 -05:00
util fixed MSVC support 2023-06-01 22:22:44 -05:00
.clang-format added clang-format 2023-02-09 12:32:48 -06:00
.gitignore fixed MSVC support 2023-06-01 22:22:44 -05:00
CMakeLists.txt fixed MSVC support 2023-06-01 22:22:44 -05:00
LICENSE.md Initial commit 2020-10-28 00:16:30 -05:00
Makefile WIP: removed stale error handling 2023-08-29 14:07:45 -05:00
README.md update README.md 2023-05-28 21:11:52 -05:00
appveyor.yml whoops, need to update the command to run the testsuite 2023-05-28 21:13:51 -05:00
main.c WIP: removed stale error handling 2023-08-29 14:07:45 -05:00

README.md

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