aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorCalvin Rose <calsrose@gmail.com>2020-05-16 14:12:21 -0500
committerCalvin Rose <calsrose@gmail.com>2020-05-16 14:12:21 -0500
commitb97e011715287bff6865770d8ece21ae19b7662e (patch)
tree6c35b6b043f85a91be165f61c4b7542d6bbcb1c5 /README.md
parentMake sure winsock2.h is included before windows.h (diff)
Remove some lisp claims from README for branding.
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 595bd72a..d7bb8f49 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@
<img src="https://raw.githubusercontent.com/janet-lang/janet/master/assets/janet-w200.png" alt="Janet logo" width=200 align="left">
**Janet** is a functional and imperative programming language and bytecode interpreter. It is a
-modern lisp, but lists are replaced
+lisp-like language, but lists are replaced
by other data structures (arrays, tables (hash table), struct (immutable hash table), tuples).
The language also supports bridging to native code written in C, meta-programming with macros, and bytecode assembly.
@@ -37,7 +37,7 @@ Lua, but smaller than GNU Guile or Python.
* Mutable and immutable arrays (array/tuple)
* Mutable and immutable hashtables (table/struct)
* Mutable and immutable strings (buffer/string)
-* Lisp Macros
+* Macros
* Byte code interpreter with an assembly interface, as well as bytecode verification
* Tailcall Optimization
* Direct interop with C via abstract types and C functions