Skip to content

Releases: crabby-lang/crabby

v1.2.1

30 Jan 03:32
Compare
Choose a tag to compare

🦀Crabby VERSION 1.2.1

Introducing new (on development) Low Level and Hardware Access features of Crabby such for Memory, Threads and Systems hardware, and also a FFI for interacting with C/C++ code.

What's Changed?

  • Added new Rust files, hardware, cryptography, optimization and networking related, they're empty for now and being developed.

  • Memory safety for Crabby on development.

  • Bug fixes

  • Update README.md by @StarloExolimm in #15

New Contributors

Full Changelog: v1.2...v1.2.1

v1.2

21 Jan 11:46
Compare
Choose a tag to compare

CRABBY VERSION 1.2: Introducing Enums, Matches, Decorators and Structs

We've been working a lot in Crabby's syntax structures! We're currently adding more Syntax ideas, and thanks for the Community for helping Crabby!

Crabby's LATEST RELEASE, here's we've been working on:

  • Adding Enums, Matches, Decorators and Structs
  • Planning to add more Pythonic-friendly keywords, literals, operators and delimiters
  • Working on REPL Support
  • Crabby's Standard libraries (std) are ongoing being developed :)

Stucts:

// structs.crab
struct Point where x >= 0 {
    x: i64,
    y: i64,
}

Enums:

// enums.crab

enum Color where size > 0 {
    Red,
    Green,
    RGB(i64, i64, i64),
}

And That's All, for now :)

Full Changelog: v1.0...v1.2

v1.0 - Rewrite in rust, new syntax features and more

16 Jan 08:36
d676412
Compare
Choose a tag to compare

🦀Crabby V1.0!!

For months I've been planning for the future of Crabby, as I promise I will not abounded this project. So here are some changes!!

⚙️Key Changes:

  • Rewrite in rust
  • Pythonic style syntax
  • Purely Functional syntax
  • JIT-compile time
  • Working on package support

Any many more!!!

Stay tuned! 😄🦀

Crabby v0.1 beta

30 Mar 03:48
a7e30a0
Compare
Choose a tag to compare
Crabby v0.1 beta Pre-release
Pre-release

Crabby🦀 version v0.1-beta, We like to introduce you to the first beta launch of Crabby! It now has features like: Boolean, Integers, Floats and many more!

Some of the upcoming features to be added aswell is:

  • A safe memory manager
  • A package manager pre-installed to it
  • An Installer(Since there is no installer for crabby yet)
  • A Borrow Checker
  • And a Garbage collector.