Doug Currie
Doug Currie
The (auto generated) builtin functions reference says: ``` hash(x) -> int | hashes any value into an int ``` but this: ``` assert hash(1) is int ``` gives: ``` error:...
I don't see a way to confirm that I'm running a specific version of Lobster. When I build locally, and run without args I [get the build date](https://github.com/aardappel/lobster/blob/21117d53a5ccedfdb03da732d6d881df1ec47fe9/dev/src/main.cpp#L169), which is...
After running `build/premake.sh` using premake-4.3 installed by Brew, a `make config=release32` or `make config=release64` in the gmake directory fails. This is on OS X 10.11.2 with ``` e$ cc -v...
I thought I found a compiler non-termination bug, but when constructing a minimal test case I found that it was just taking a **very** long time to complete. I stopped...
In a commit on May 12, 2017, "bugfix: dyn_env is not properly restored on delim-cont call", a change was made to error.c in the generated file lib/ext but not to...
Addressing issue #351 a bit. The definition of `display` in error.scm always uses `current-error-port`, which was causing the build to fail making init_lib.c and others. Changed to use `current-output-port` in...
Add a means for `(picrin test)` cases to expect an error and "pass" if the error is received, "fail" if not. Add a test case `t/substring-index.scm` to test this feature...
Feature idea (soft request)... Having made a big table of parameter values for my notebook, I found myself wanting to capture ("grab") and reload ("load") the values. This provides a...
It appears that `ext/eval.c` was generated using picrin from _unknown_ Scheme source code. It would be really nice if the Scheme source was included in this repo, along with instructions...
The Makefile references graph.scm, but it doesn't seem to be committed. Is it available?