This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Strings
Strings are implemented as an array of characters preceded by its length. Each character is a codepoint, implemented as a long. This is very space-consuming (8 bytes per character on a 64 bits machine) but should be corrected later. Furthermore, it provide O(1) access to individual characters and modification and constant access to length. When printed, strings are transformed to UTF-8.
Functions implemented for strings are pr, prn, sref, +, is, isnt. The is function works the way it is supposed to : it compares the content of the string, not object identity. Thus :
(is “foo” (+ “f” “oo”)) ==> t





