#include #include #include "struct.h" #include "print.h" void variable_expression_print( struct expression* super) { struct variable_expression* this = (void*) super; string_print(this->name); }