From bf61c64b8e9fe4a6fe909af79c02805b56182bb9 Mon Sep 17 00:00:00 2001 From: caelansar <819711623@qq.com> Date: Wed, 10 Jul 2024 13:21:12 +0800 Subject: [PATCH] style: markdown --- README.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8d94892..32b0f14 100644 --- a/README.md +++ b/README.md @@ -10,11 +10,8 @@ compiled implementation ## What’s Monkey? -Monkey has a C-like syntax, supports **variable bindings**, **prefix** and **infix operators**, has **first-class** and -**higher-order functions**, can handle **closures** with ease and has **integers**, **booleans**, **arrays** and * -*hashes** built-in. -reading through [Writing An Interpreter In Go](https://interpreterbook.com/) -and [Writing A Compiler In Go](https://compilerbook.com/) for more details +Monkey has a C-like syntax, supports **variable bindings**, **prefix** and **infix operators**, has **first-class** and **higher-order functions**, can handle **closures** with ease and has **integers**, **booleans**, **arrays** and **hashes** built-in. +Reading through [Writing An Interpreter In Go](https://interpreterbook.com/) and [Writing A Compiler In Go](https://compilerbook.com/) for more details ## How to use