bigloo icon indicating copy to clipboard operation
bigloo copied to clipboard

a practical Scheme compiler

Results 24 bigloo issues
Sort by recently updated
recently updated
newest added

make-client-socket and make-server-socket now both accept a domain keyword argument specifying the address family for the resulting socket. By default, domain is 'inet (i.e., IPv4) but can also be 'inet6...

Just noticed that the main site that's referenced (inria) returns 403 errors when visited. I'm not sure when this changed (couldn't have been that long ago) but I can't access...

`let-optionals*` is a convenient way to handle optional arguments, see https://practical-scheme.net/wiliki/schemexref.cgi?let-optionals%2A I have been using it in bigloo for many years and in hundreds of functions: (define-syntax let-optionals* (syntax-rules ()...

Hello! We hit a weird bug on the Gentoo test CI, we assume this is a issue of running more then one job for tests. What do you think of...

Hello, is there any way to export a scheme function with the following declaration `(fire-scalpel::void id::int)` to the C world? For example ``` (module example (extern (include "g_local.h") (export fire-scalpel...

I was just looking at the signal numbers in runtime/Jlib/foreign.java. The values for SIGQUIT and SIGINT are reversed, and several of the others are system-dependent. For example, the values of...

I am using Bigloo 4.3h on Linux Debian 10 (amd64 architecture) which I installed by downloading from the repository and using dpkg -i ... I use this code in my...

I ran `./configure --jvm=yes` configure runs fine and spits out a summary that looks accurate. I run make, that runs for a couple seconds but then stops at the following:...

Eduardo tried to generate WebAssembly code and failed. Here is an excerpt of his last post: > Now, let us see the problem. It would be great if Bigloo could...

extend the module system to support prefixing exported symbols with a user-provided symbol. For example, the following prefixes all of the exports from the test module with t-. (import (:prefix...