Yutaka HARA
Yutaka HARA
To prevent issues like #35, it is nice if we have an unit test like: 1. Run `Window.draw_xx` 1. Save it to a png file 1. Compare it with the...
Current behavior: `ERROR: "dxopal server" was called with arguments ["-h"]`
Started working on new macro expander. There is still a lot of work to be done, but eventually biwa will have R7RS library system and hygienic macros. - This new...
It seems that there is no way to get the `window` object under an environment where `eval()` is disallowed by Content Security Policy (eg. on Electron).
In R7RS, internal defines must be placed on the beginning of the function. So this program is wrong: ``` (define (foo) (display 1) (define bar 2) bar) ``` However BiwaScheme...
Current behavior: ``` biwascheme> '(1 . 2 3) (1 3) ``` This should be a parse error.
I didn't know that Node's ESM support is no longer experimental. It is nice if we can run src/main-node.js without the building process.
- http://blog.practical-scheme.net/shiro/20161215-parameterize - 実装例7 / care unidempotent converter - 実装例8 / care error-raising converter
Since we ship a single JavaScript file (release/node_biwascheme.js) for npm package, it is hard to find which js file under `src/` is the true cause of the error. It is...