e.g.
const char* my_func_string = "int func(){"
" return 1; }"; //is there a way to do it automatically?
int func(){
return 1;
}
func could be of multiple lines. And I want my_func_string to capture the change whenever I change func. It'd be better if it's captured at compile time because the executables may not find the source code