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-15 | parser: Generate GAS 64-bit assembly for linux | Johnny Richard | |
Signed-off-by: Johnny Richard <johnny@johnnyrichard.com> | |||
2023-04-13 | Create inital project structure + lexer | Johnny Richard | |
Signed-off-by: Johnny Richard <johnny@johnnyrichard.com> |