summaryrefslogtreecommitdiff
path: root/parser/package.go
AgeCommit message (Collapse)Author
2025-11-28doc: improve comments, pass lintMarc Vertes
Also improve the setup of golangci-lint.
2025-11-27chore: move compiler and interpreter in their own packagesMarc Vertes
2024-03-22feat: add initial support for import, provide minimal fmt (#6)Marc Vertes
The `import` statement is now parsed. It only provides minimal support for the `fmt` package (only `Println` symbol is defined). This should be sufficient to pass a few tests. Full support of package namespaces, source and binary imports will be supported later, based on this work.