hobbes
a language, embedded compiler, and runtime for efficient dynamic expression evaluation, data storage and analysis
boot.H
Go to the documentation of this file.
1 
2 #ifndef HOBBES_BOOT_COMPILE_HPP_INCLUDED
3 #define HOBBES_BOOT_COMPILE_HPP_INCLUDED
4 
5 #include <hobbes/eval/cc.H>
6 
7 namespace hobbes {
8 
9 void compileBootCode(cc& ctx);
10 
11 }
12 
13 #endif
Definition: boot.H:7
void compileBootCode(cc &ctx)
Definition: boot.C:9
Definition: cc.H:64