dragoncoder047
dragoncoder047
Currently the parser completely obliterates the comments because, well, comments do nothing. Now that the parser supports getting metadata (`__line__`, `__col__`, etc) it would be also nice to include the...
```js const code = ` (define i 0) ;; (define i (let ((i 2)) (+ i 3))) `; async function main() { /* this is head of devel branch when...
Currently the `box.cog` test fails for Cogni only because I decided to stringify boxes slightly differently. One of the tests is: ```cognate Let E be a List (Box 1 Box...
``` $ echo "Do Box 0;" > crash.cog $ cognac crash.cog ______ ______ / ____/___ ____ _____ ____ _/ ____/ / / / __ \/ __ `/ __ \/ __...
Don't know how good your optimizer is, but you don't need to implement all of `>`, `=`, `` and `==` and the rest come from that: ```cognate Def < as...
```cognate Def F3 as (Error "Test error"; F3); Def F2 as (F3; F2); Def F1 as (F2; F1); Def F0 as (F1; F0); F0; ``` gets you an `unreachable()`: ```...
Add links to BeepBox, JummBox, Ultrabox, AbyssBox, Slarmoo's Box, and Jukebox
### Bug Description I was pulling my hair out trying to find why my scale mechanism for flipping the feet of my character suddenly stopped working (i am not using...
### Bug Description with 2 moving objects colliding with restitution, the velocity is reflected as though the other object is not moving. However if it is moving then some momentum...
### Is your feature request related to a problem? Please describe. currently shake() wiggles the camera around in all directions. would be nice to be able to restrict the shake...