blob: 92cbe9fa548a789a97678a53646a439c11329a44 (
plain)
1
2
3
4
5
6
7
8
|
// This file defines how to compile doctests
#pragma once
#include "../ast.h"
#include "../environment.h"
#include "../stdlib/datatypes.h"
Text_t compile_doctest(env_t *env, ast_t *ast);
|