#pragma once #include #include #include "ast.hpp" namespace lily { struct function { std::vector params; ast_ptr body; }; };