Git Product home page Git Product logo

monkey-lang's Introduction

monkey-lang

概述

参考用Go语言自制解释器实现的一门带命令行的语言, 具体特性如下:

  1. 类C语法
    1. if else
    2. while
    3. 函数定义
  2. 变量绑定
  3. 整型和布尔型
  4. 算术表达式
  5. 函数和高阶函数
  6. 闭包
  7. 字符串
  8. 数组
  9. Hash
  10. 内置函数
    1. len: 求数组和字符串长度
    2. first: 求数组第一个元素
    3. push: 向数组结尾添加一个元素
    4. print: 向标准输出打印数据
    5. time: 返回当前时间戳

用法

git clone
cd monkey-lang
mvn clean package
java -jar target/monkey-lang.jar

示例

  1. 变量绑定
>>> let a = 1;
>>> a
1
>>> let b = 2
>>> b
2
>>> let a = 1 > 2
>>> a
false
>>> 
  1. 函数
>>> let fib = fn(x) {
        if (x==0) {
            return 0;
        } else {
            if (x==1) {
                return 1;
            } else {
                return fib(x-1) +fib(x-2);
            }
        }
    }
>>> fib(1)
1
>>> fib(2)
1
>>> fib(10)
55
>>> fib(20)
6765
>>> 
>>> fn fib(x) {
        if (x==0) {
                return 0;
            } else {
                if (x==1) {
                    return 1;
                } else {
                    return fib(x-1) +fib(x-2);
                }
            }
        };
NULL
>>> fib(1);
1
>>> fib(2);
1
>>> fib(3);
2
>>>
  1. 高阶函数
>>> let twice = fn(func, x) {
        return func(func(x));
    }
>>> let addOne = fn(x) {
        return x+1;
    }
>>> twice(addOne, 1)
3
>>> twice(addOne, 2)
4
>>>
  1. 字符串
>>> let hello = "hello there, fellow monkey users and fans"
>>> hello
hello there, fellow monkey users and fans
>>> "hello world"
hello world
>>> let sayHello = fn() {
        "Hello!";
    }
>>> sayHello()
Hello!
>>> let greeter = fn(greeting) {
        fn(name) {
            greeting + " " + name +"!";
        }
    }
>>> let hello = greeter("hello")
>>> hello("feng")
hello feng!
>>>
  1. 数组
>>> let myArr = [1+2, 2+3, fn(x){return x*x}]
>>> myArr[0]
3
>>> myArr[1]
5
>>> myArr[2](2)
4
>>> len(myArr)
3
>>> first(myArr)
3
>>> let another = push(myArr, 4)
>>> another
[3,5,fn(x) {
return (x * x);
},4]
>>>
  1. Hash
>>> let myHash = {true:"yes, boolean", 99:"correct, an integer"};
>>> myHash[true]
yes, boolean
>>> myHash[99]
correct, an integer
>>> myHash[5>1]
yes, boolean
>>> myHash[100-1]
correct, an integer
>>> let people = [{"name":"alice", "age":24}, {"name": "anna", "age": 28}];
>>> people[0]["name"]
alice
>>> people[0]["age"]
24
>>> people[1]["age"]
28
>>> people[1]["name"]
anna
>>> 
>>> let getName = fn(person) {return person["name"];};
>>> getName(people[0])
alice
>>> getName(people[1])
anna
>>>
>>> let newPerson = {};
>>> let newPerson = put(newPerson, "name", "bob")
>>> let newPerson = put(newPerson, "age", 25)
>>> let people = push(people, newPerson)
>>> len(people)
3
>>> people[2]["name"]
bob
>>> people[2]["age"]
25
>>>
  1. 内置函数
>>> len("1234")
4
>>> let four = "2"
>>> len(four)
1
>>>
>>> print("hello world");
hello world
>>> time()
2023-04-03 21:42:42
>>> 
>>> let reverse = macro(a, b) {
        quote(unquote(b)-unquote(a));
    };
>>> reverse(2+2, 10-5)
1
>>> let evalSecond = macro(a, b){
        quote(unquote(b));
    };
>>> evalSecond(print("not printed"), print("printed"))
printed
>>>
>>> let unless = macro(condition, consequence, alternative) {
        quote(if (!(unquote(condition))) {
            unquote(consequence);
        } else {
            unquote(alternative);
        });
    };
>>>  unless(10<5, print("not greater"), print("greater"))
not greater
>>> unless(10>5, print("not greater"), print("greater"))
greater
>>>
  1. 循环
>>> let loop = fn() {
        let i=0;
        while(i<3) {
            print(i);
            let i=i+1;
        }
    };
NULL
>>> loop();
0
1
2
NULL
>>> loop();
0
1
2
NULL
>>>
>>> let loop = fn(i) {
        if (i<2) {
            print(i);
            loop(i+1);
        }
    };
NULL
>>> loop(0)
0
1
NULL
>>>

实现

  1. 词法分析器 -> 递归下降
  2. 语法分析器 -> Pratt Parser
  3. 解释器 -> 树遍历解释器
  4. 命令行 -> Jline3

monkey-lang's People

Contributors

aragorn-fynn 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.