From 4ca75cbd38f6ccdb00486980df5be5af63347d53 Mon Sep 17 00:00:00 2001 From: TriMill Date: Thu, 22 Sep 2022 22:54:39 -0400 Subject: [PATCH] forgot strings lol --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 40b87e4..fd3a73e 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ To install complexpr, simply clone this repository, `cd complexpr-bin`, and `car | `Rational` | Rational number, represented as a pair of 64-bit integers | `3//5`, `-11//25` | | `Bool` | Boolean type, either `true` or `false` | `true`, `false` | | `Char` | A single Unicode character | `'A'`, `'\n'` | +| `String` | A string of Unicode characters | `"example string\n"` | | `List` | A heterogeneous list | `[1, 2.0, "3"]` | | `Map` | A heterogeneous hashmap | `{1: "one", "2": 2}` | | `Func` | A function | `max`, `fn(x,y) (x^y)` |