> bin/goldfish --version
Goldfish Scheme 17.11.3 by LiiiLabs
based on S7 Scheme 11.2 (30-Dec-2024)
Goldfish Scheme v17.11.3, the community version of Liii Scheme, will be integrated into the next beta release of Liii STEM. It will be used to connect with DeepSeek, facilitating structured STEM communication between users and large models. Additionally, Goldfish Scheme v17.11.3 will be included in the community edition of Liii STEM, the Mogan STEM Suite v1.2.9.9.
New Contributors
- Yancheng Li
- Xinyi Yu
- Renkai Ge
- Qingyu Chen
Significant Changes
- Case classes have been largely refined, with
%
indicating instance methods and@
indicating static methods. - Instance methods of the
rich-string
case class (such as higher-order functionsmap
andfor-each
) now supportrich-char
parameters with Unicode support. - The
rich-string
case class has added a commonly used function:split
.
Example Code
(((box "2025/02/05/上午/11点") :split "/")
:make-string ":")
; => "2025:02:05:上午:11点"
box
converts the string"2025/02/05/上午/11点"
into arich-string
case class.- Using the
:split
instance method ofrich-string
, the string is split into arich-vector
of length 5. - Using the
:make-string
instance method ofrich-vector
, the delimiter is changed from/
to:
.