- GitHub Codespaces
- Zig (automatically installed in Codespaces)
- Open the repository in GitHub.
- Click on
Code
and thenOpen with Codespaces
. - The development environment will be automatically configured, including the installation of Zig.
You can use zig build
to build the project:
zig build
- Fork the repository.
- Create a new branch (git checkout -b feature-branch).
- Commit your changes (git commit -am 'Add new feature').
- Push to the branch (git push origin feature-branch).
- Open a pull request.
Ensure your code adheres to consistent style guidelines:
You can use zig fmt
to format your Zig code:
zig fmt