gerbil icon indicating copy to clipboard operation
gerbil copied to clipboard

Gerbil Scheme

Results 156 gerbil issues
Sort by recently updated
recently updated
newest added

`quasistring` and string interpolation have been discussed on IRC. The following is an implementation for `quasistring` based on parsing a string (during macro expansion) for template variables and capturing lexical...

enhancement
backlog

Gerbil v0.15.1 on Gambit v4.9.3 (macos catalina 10.5, homebrew) ```scheme (import :std/db/leveldb :std/sugar :std/text/json) (def (put! db id doc) (leveldb-put db id (json-object->string doc))) (def (main) (def ldb (leveldb-open "test.level"))...

Currently `gxi` uses `--gnu-style-double-dash-options` whereas `gcx` uses `-cc-style-single-dash-options`. Would it be possible to standardize on either one (or support both)? There's just been some discussion on updating Gambit's `gsc` and...

backlog
tendentious

Steadily move the docs into the following direction: - unified function signatures, return types and short parameter descriptions: see template below - descriptions for submodule functions: what are they doing?...

help wanted

This is a very minor nit, but I get partial output lines from the Gerbil build, e.g. the last line in this example with only `... c`. The full output...

While writing https://github.com/vyzo/gerbil/pull/297 I wondered how to approach type checking in Gerbil and Scheme in general. This issue should serve to organize discussion around this topic until it becomes official...

While installing Gerbil 15.1 using Gambit 4.9.3, on Ubuntu 18.04, I get following error stacktrace. I'm beginner to Scheme. `... compile text/json ... compile foreign text/_zlib ../../../src/std/text/_zlib.c:334:10: fatal error: zlib.h:...

I cannot compile `gerbil` with the `lmdb` feature enabled with `liblmdb-dev 0.9.22-1` and `liblmdb++-dev 0.9.14.1+git20160228.0b43ca8-1` installed on Debian 10 with `gcc (Debian 8.3.0-6) 8.3.0`. ``` ... compile foreign db/_lmdb ../../../src/std/db/_lmdb.c:...

attempting to run `build.sh` ends with ``` [*] Building gerbil stage1 [final] >>> preparing /Users/masukomi/workspace/reference/scheme/gerbil >>> compiling runtime building gerbil/runtime in /Users/masukomi/workspace/reference/scheme/gerbil/lib ... compile gx-gambc *** ERROR IN runtime-smp?, "build.scm"@18.43...

``` ``(a ,@,@'((c d e f))) ``` Should return ``` `(a ,@(c d e f)) ``` as it does with e.g. SBCL. But Gerbil currently returns ``` `(a ,@((c d...