From b97e011715287bff6865770d8ece21ae19b7662e Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Sat, 16 May 2020 14:12:21 -0500 Subject: [PATCH] Remove some lisp claims from README for branding. --- CONTRIBUTING.md | 5 +++-- README.md | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d872f3f3..93e5896d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -35,8 +35,9 @@ may require changes before being merged. [astyle](http://astyle.sourceforge.net/astyle.html). You will probably need to install this, but it can be installed with most package managers. - For janet code, the use lisp indentation with 2 spaces. One can use janet.vim to - do this indentation, or approximate as close as possible. + For janet code, use lisp indentation with 2 spaces. One can use janet.vim to + do this indentation, or approximate as close as possible. There is a janet formatter + in [spork](https://github.com/janet-lang/spork.git) that can be used to format code as well. ## C style diff --git a/README.md b/README.md index 595bd72a..d7bb8f49 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Janet logo **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