| www.delorie.com/gnu/docs/guile/guile_148.html | search |
![]() Buy GNU books! | |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Once you have an interpreter running, you can ask it to evaluate Scheme code. There are two calls that implement this:
Note that the line of code in scheme_code must be a well formed
Scheme expression. If you have many lines of code before you balance
parentheses, you must either concatenate them into one string, or use
gh_eval_file().
gh_eval_file is completely analogous to gh_eval_str(),
except that a whole file is evaluated instead of a string.
gh_eval_file returns SCM_UNSPECIFIED.
gh_load is identical to gh_eval_file (it's a macro that
calls gh_eval_file on its argument). It is provided to start
making the gh_ interface match the R5RS Scheme procedures
closely.
| webmaster donations bookstore | delorie software privacy |
| Copyright © 2003 by The Free Software Foundation | Updated Jun 2003 |