Shaw

Results 8 issues of Shaw

`x % y` passerine: | `n % m` | `m = 7` | `m = -7` |---|---|---| `n = 4` | `3` | `1` `n =-4` | `1` | `3`...

question
design

dext currently has little doccumentation for its implementation. a nice first file to document would be the dynamic object implementation in `source/lang/dynamic.d`

documentation

currently dext has no tests, only good and bad within the `lang/` directory. both compilation to bytecode and bytecode evaluation could use testing. this should optimally be done in parallel...

documentation
enhancement

Rounding Ops would be great. It would make up for the lack of `tb_inst_fmod` ``` a % b => a - trunc(a / b) * b ^^^^^ ^^^^^ this or...

# Proposal to Improve Quest's Binary Operator semantics. Currently in Quest there are Unary and Binary operators which collide in names. This is an issue for both those using and...

MiniVM had a JIT. It does not now. One should be re-added. Waiting for this one on @RealNeGate's Work on Cuik & TB to be stable.

enhancement

Right now in v0.0.4, the drawing API is not implemented. Under the hood it uses Raylib, which should work. I just don't have a graphical Linux box for the time...

enhancement
help wanted

Adds a simple web REPL that can be started with `make -C web`. Does not block JS main thread. Does not need run button, runs code on change.