Files
Toy/test/test_node.c
2022-08-29 12:23:48 +10:00

22 lines
322 B
C

#include "node.h"
#include "memory.h"
#include "console_colors.h"
#include <stdio.h>
int main() {
{
//test literals
char* str = "foobar";
Node* node;
emitNodeLiteral(&node, TO_STRING_LITERAL(copyString(str, strlen(str)), strlen(str)) );
freeNode(node);
}
printf(NOTICE "All good\n" RESET);
return 0;
}