12 lines
181 B
C++
12 lines
181 B
C++
|
#pragma once
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
#include "ast.hpp"
|
||
|
|
||
|
namespace lily {
|
||
|
struct function {
|
||
|
std::vector<std::string> params;
|
||
|
ast_ptr body;
|
||
|
};
|
||
|
};
|