Lee Keitel
Lee Keitel
## Description Use default values of "github" for theme and 9.12.0 for version. Allow highlights to be disabled globally or per page. ## Motivation and Context Closes #131. ## How...
How to do packaging? Right now if a package is needed for an application, the file(s) must be manually downloaded and added to the source tree. They can be placed...
Allow functions to specify types for parameters. Types will be checked at compile time as much as possible. Types that can't be checked then will be checked at runtime. This...
Right now, .nib files are always checked to see if they match their source file. Only the modification time is checked. This may cause problems if a file is edited...
Strings are implemented a slice of Unicode runes. Meaning arbitrary byte sequences are not allowed, or the very least not guaranteed. There needs to be a way to manipulate arbitrary...
Similar to double quoted strings in PHP, f strings in Python 3, and template strings in JavaScript. ## Syntax Notes `"This string contains ${some_var}, cool huh?"` or `` `This string...
Not sure if making generators a part of the language would be good or not. Something to toy with.
Right now the parse errors are quite cryptic or even completely wrong. It doesn't need to be as fancy as Rust's, but something a bit more friendly would do nicely.
Need to fully implement number types (signs and exponent forms). Maybe need to verify strings?