blob: 30b1477663949972b6afb45c6b506ee9a0b3e52a (
plain)
1
2
3
4
5
6
7
8
9
|
// This file defines how to compile debug logs
#pragma once
#include "../ast.h"
#include "../environment.h"
#include "../stdlib/datatypes.h"
Text_t compile_debug_log(env_t *env, ast_t *ast);
|