Embeddable scripting language loosely based off of Lua
Go to file
CPunch 8ac8085d20 syntax: 'var'->'let' 'function'->'func'
- 'var' has some weird scoping connotations with users of JS. better to change it to 'let', which will decide whether to make the variable a local or a global
- 'func' looks visually appealing lol
- some minor refactoring done in cparse.c
2023-02-09 15:58:25 -06:00
docs Add documentation for the OS library 2023-11-03 22:55:24 -05:00
examples syntax: 'var'->'let' 'function'->'func' 2023-02-09 15:58:25 -06:00
src syntax: 'var'->'let' 'function'->'func' 2023-02-09 15:58:25 -06:00
.clang-format added clang-format 2023-02-09 12:32:48 -06:00
.gitignore Added CMake support 2021-02-11 20:34:04 -06:00
CMakeLists.txt Added AppVeyor CI 2021-03-16 14:54:44 -05:00
LICENSE.md Initial commit 2020-10-28 00:16:30 -05:00
Makefile Removed '-Werror' to the Makefile 2021-06-11 15:01:53 -05:00
README.md syntax: 'var'->'let' 'function'->'func' 2023-02-09 15:58:25 -06:00
appveyor.yml Updated Appveyor to test testsuite 2021-03-19 22:25:23 -05:00
main.c Added minimal testsuite for IC 2021-03-19 22:23:04 -05:00

README.md

Cosmo

AppVeyor

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

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.