4-variable-simplifier/expression/variable/print.c
2026-04-25 16:00:10 -04:00

16 lines
244 B
C

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