Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-05-04 | parser: Introduce statement keywords | Carlos Maniero | |
This commit introduces a few changes in pipalang syntax. Now, both functions and variables requires keywords to be defined. before: main(): i32 { a: i32 = 2; return a; } now: fn main(): i32 { let a: i32 = 2; return a; } Signed-off-by: Carlos Maniero <carlos@maniero.me> Reviewed-by: Johnny Richard <johnny@johnnyrichard.com> | |||
2023-04-21 | gas: Generate arithmetics expressions | Carlos Maniero | |
We decided for using push and pop to simplify the implementation, we want to revisit the approach latter. Signed-off-by: Carlos Maniero <carlosmaniero@gmail.com> Co-authored-by: Johnny Richard <johnny@johnnyrichard.com> |