5. Scheme String

A wrapper around s9_string, needed to avoid defining Vector manually.

<<scheme_function_declarations>>=
const char * monolith_scheme_string(s9_cell n);
<<scheme_functions>>=
const char * monolith_scheme_string(s9_cell n)
{
    return s9_string(n);
}



prev | home | next