Files
wren/builtin/README.md
T

10 lines
434 B
Markdown
Raw Normal View History

The Wren scripts in this directory get converted to C string literals into files
2015-09-22 07:45:58 -07:00
with a `.wren.inc` extension. Those are then `#include`d into their respective
`.c` files so that the interpreter can load them directly without having to do
any file IO.
2014-02-04 08:44:59 -08:00
2015-09-22 07:45:58 -07:00
The script that does this translation is `util/wren_to_c_string.py`.
2014-02-04 08:44:59 -08:00
When any of the ".wren" files in here are changed, the Makefile automatically
updates the generated C headers.