Skip to content

RedGear-Studio/Atlas77

Repository files navigation

Contributors Forks Stargazers Issues MIT License

Atlas77

[Atlas77] is a programming language in development written in Rust
Report Bug · Request Feature · Add Features

What is Atlas77

Blablablablabla I'm trying to make a language in Rust

Example

fn fib(n: i64) -> i64 = 
  match n with
  | 0 => 0,
  | 1 => 1,
  \ _ => fib(n - 1) + fib(n - 2)

fn main() -> i64 = fib(10)

State

Currently the language is heavily in development and not suitable for any production purposes.

Contributing

Thank you for your interest in contributing to our project! We welcome all contributions, whether they be bug fixes, new features, or improvements to the documentation.

To get started, please follow these steps:

  • Fork the repository and clone it locally.
  • Create a new branch for your changes: git checkout -b my-new-feature.
  • Make your changes, and be sure to follow our coding conventions and style guide.
  • Commit your changes using conventional commit specifications: git commit -m "feat(module): add new feature".
  • Push your changes to your fork: git push origin my-new-feature.
  • Open a pull request to our repository with a clear description of your changes and why they should be merged.

Once you have submitted your pull request, one of our maintainers will review it and provide feedback. Thank you for helping us make our project better!

License

Distributed under the MIT License. See MIT-LICENSE for more information.

(back to top)

Contact

Twitter Name: @RedGear Studio Email: studio.redgear@gmail.com

Project Link: https://github.com/RedGear-Studio/Atlas77

(back to top)