Multiple return values working!

This commit is contained in:
Krzosa Karol
2022-06-16 12:42:43 +02:00
parent 5345894e3e
commit c262e7e491
3 changed files with 43 additions and 12 deletions

View File

@@ -139,6 +139,7 @@ struct Ast_Builtin: Ast_Expr{
//
struct Ast_Return: Ast{
Ast_Type *resolved_type;
Array<Ast_Expr *> expr;
};