How do you embed a 'large' scheme program  with s7 .
Do you run any macros before you compile the c code to do the escapes for
the scheme text? (see below)
I will appreciate if i can get access to those macros.


int main(int argc, char **argv)
{
  char *scheme_program = "(define (hello src)"
                            "(display src))"
                  "(hello \"joe\n\")";
  s7_scheme *s7;
  s7 = s7_init();
  s7_eval_c_string(s7, scheme_program);
}
-- 
Joe
_______________________________________________
Cmdist mailing list
[email protected]
http://ccrma-mail.stanford.edu/mailman/listinfo/cmdist

Reply via email to