Implement atom evaluation

This commit is contained in:
2025-08-10 13:55:20 +01:00
parent 03bd0ff597
commit 3f871d2b43
5 changed files with 95 additions and 0 deletions

8
lib/include/eval.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef EVAL_H
#define EVAL_H
#include "am.h"
void eval(am_t *am);
#endif