-
The way Gerbil's build system currently works makes it quite difficult to package, especially on distributions that aim for reproducibility. Here are some ways you can make the build more manageable:
…
-
https://srfi.schemers.org/srfi-27/srfi-27.html
According to Gambit's manual, this is already built-in. We just need to add a `(srfi 27)` library wrapper.
-
(manual import of ticket the trac import script silently failed to import)
Our distribution process is extremely ad-hoc and fragile.
PnkFelix has a script to semi-automate the process for CommonLarc…
-
I think this code should work (it works in chibi) but in drracket I get
`advent_2.rkt:7:3: with-input-from-file: unbound identifier in: with-input-from-file #(91 20)`
The weird thing is that dr…
-
**What's the problem this feature will solve?**
As @rht pointed out in https://github.com/projectmesa/mesa/pull/2314#discussion_r1769636029 There is currently no easy way to retrieve a single agent b…
-
This works:
```
chibi-scheme -m chibi.string
> (string-split "foo\x00;bar\x00;baz\x00;" #\null)
("foo" "bar" "baz" "")
```
This doesn't:
```
chibi-scheme -m srfi.130
> (string-split "foo\x…
-
Hi! I am trying to use Steel in my project (system for musical livecoding).
I want to be able to create custom objects in Steel virtual machine similar to register_types.rs example file.
But these …
-
Hi @egallesio !
R7RS says that `load` should accept a second optional argument:
```scheme
(load filename environment-specifier)
```
It would be a STklos module.
I looked into `lib/load.stk`,…
-
The "floating point numbers" section refers to 64-bit double precision -- presumably IEEE-754 -- and specifies how to encode typical numbers, but it does not specify encoding of special values such as…
-
What causes the following?
`#u16(...)` syntax does not work:
```
stklos> #u16(1 2 3)
**** Error:
%read: bad uniform vector specification `u16'
(type ",help" for more information)
stklos> *…