# monkey **Repository Path**: guuzaa/monkey ## Basic Information - **Project Name**: monkey - **Description**: Monkey 语言 REPL 💻 - **Primary Language**: Unknown - **License**: Unlicense - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-05-19 - **Last Updated**: 2022-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: Go语言, 解释器 ## README # Go 实现的 Monkey 语言 REPL Monkey 语法类似于 Python。 代码借鉴自 [Writing An Interpreter In Go](https://interpreterbook.com/),感兴趣的朋友可以找来原书看看。 实现的功能: - 支持整型、字符串、数组和哈希表。 - 支持函数调用和闭包,函数是一等公民。 计划实现的功能: - [ ] 支持浮点数