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