Skip to content

Releases: MDResearch/Mady

0.0.1 Alpha1✨

24 May 12:40
Compare
Choose a tag to compare

Hello there, 0.0.1 Alpha1 !

What's Changed

  • Remove Annotator
  • No Longer Need Grad Trait

New Syntax

  • Call
my_crate::my_func(a, b, c);

Change Syntax

  • Macro
#[grad(grad_type_1, grad_type_2, ....)]
fn some_func() -> out_type {
...
}
  • Lit
    No Longer Need Type Annotate

Full Changelog: v0.0.1-alpha...v0.0.1-alpha.1

First Release! 🎉

17 May 12:41
Compare
Choose a tag to compare

Mady's First Release

Hello there. This is the first release version of Mady. Mady is unstable now and may have breakthrough change.

Support Syntax List

  • Declare Value
    let var;
    let var = ...;
  • Ops (+ - * /)
    a + b
  • Lit
    10_usize
    // type annotations require
  • Method Call
    a.b(c, d, e)

Full Changelog: https://github.com/MDResearch/Mady/commits/v0.0.1-alpha