Brisk icon indicating copy to clipboard operation
Brisk copied to clipboard

The Brisk Programming Language

Results 12 Brisk issues
Sort by recently updated
recently updated
newest added

Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.4. Release notes Sourced from word-wrap's releases. 1.2.4 What's Changed Remove default indent by @​mohd-akram in jonschlinkert/word-wrap#24 🔒fix: CVE 2023 26115 (2) by @​OlafConijn in...

dependencies

Bumps [semver](https://github.com/npm/node-semver) from 5.7.1 to 5.7.2. Release notes Sourced from semver's releases. v5.7.2 5.7.2 (2023-07-10) Bug Fixes 2f8fd41 #585 better handling of whitespace (#585) (@​joaomoreno, @​lukekarrys) Changelog Sourced from semver's...

dependencies

Things To Add To V2. + [ ] Add Match Statements + [ ] Enums + [ ] GC + [ ] Type Guards + [ ] Heap Types +...

enhancement
In Progress

One big goal I have with brisk is to move the language into itself. Steps towards this are for instance custom operators and macros they allow a lot of logic...

enhancement

The current type checker while it works somewhat, it was made on the basis of what I needed at the time with little research into actual type checkers. We want...

BootStrap brisk, Rewrite Brisk in itself, This is a massive task as it will require a fully working compiler and standard library and then I will have to ditch any...

enhancement

Write Better documentaition, planning, and maybe a website

documentation
enhancement

Improve Malloc so it can handle fragmentation. Create a free Function. Look into changing how things are stored look into aligning data and using single bits for booleans.

enhancement

Add a math library for working with grain numbers ```ts add(Number, Number) -> Number sub(Number, Number) -> Number mul(Number, Number) -> Number div(Number, Number) -> Number ```

enhancement

implement malloc and gc in brisk.

enhancement