GithubHelp home page GithubHelp logo

he-lang-macro's Introduction

he-lang-macro

he-lang 的宏实现

目标是做一个 rust 宏和 c 宏的魔幻缝合怪,毫无卫生性可言

He the Great

无需多言

Usage

he-lang -f abc.he
he-lang -i print!(1 | 2 | 3)
# TODO: interactive

Overview

a! = {
    () => {
        a!
    };
    ($a) => a!$a;
}

print!( a! ( a ) );

// output:
//      `a!a`

Macro

  • 宏调用时,将吃掉所有输入,并将其简单替换
// define macro
a! = {
    ($a | $b | $c) => {
        $a | $c
    };

    ($a | $c) => {
        ($c)
    };
}


// `print!` is predefined macro
// use macro
// 
// output shoull be: 
// `1 | 3`
print! (a! (1 | 2 | 3));


// nested call
// 
// output:
//  `(3)`
print! (a! (a! (1 | 2 | 3)));


// macro `print!` equals its input
// 
// output: 
//  `1 | 2`
//  `1 | 2`
print! (print!(1 | 2));

Predefined

  • print!
print!(1 | 2);
print!(1, 2, 3);

// macro `print!` equals its input
// 
// output: 
//  `1 | 2`
//  `1 | 2`
print! (print!(1 | 2));

// output: 
// `print!`
print!(print!);
  • raw!
// output: 
//  `a s v dfv fd`
print!(raw!(a s v dfv fd));
  • count!
// output: 
//  `4`
print!(count!(1 | | |));
  • ()
b! = {
    () => c!;
}

ab! = {
    () => end!;
}

ac! = {
    () => "in ac";
}

end! = {
    () => "ended";
}

make_macro! = {
    (1) => {
        ab!()()
    };

    (2) => {
        a(b!)()()
    };
}

// output should be
//  
//  "ended"
//  "in ac"

print!(make_macro!(1));
print!(make_macro!(2));

he-lang-macro's People

Contributors

tramis avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.