lily/src/function.hpp

12 lines
181 B
C++
Raw Normal View History

2019-06-04 20:45:06 -07:00
#pragma once
#include <string>
#include <vector>
#include "ast.hpp"
namespace lily {
struct function {
std::vector<std::string> params;
ast_ptr body;
};
};