aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Lockwood2021-06-30 22:17:36 -0400
committerAlexis Lockwood2021-06-30 22:17:36 -0400
commit5b705f7ddd394872ce7d1277fd781d82ea815bba (patch)
treea6820d2ddf32e7aa3ce93234405e966b30a19e8c
parent727b380b06a538bd36f1df621f779202b93c2969 (diff)
yeah it's an actual basic
-rw-r--r--README.md11
1 files changed, 5 insertions, 6 deletions
diff --git a/README.md b/README.md
index e186c61..b207d2b 100644
--- a/README.md
+++ b/README.md
@@ -6,10 +6,9 @@
# Littlescript
-LittleScript is a BASIC-like lightweight scripting language for
-microcontrollers. It's meant for adding scriptability to your firmware, not
-for writing your entire code in. LS has some restrictions to make it more
-embedded-friendly:
+LittleScript is a BASIC dialect for microcontrollers. It's meant for
+adding scriptability to your firmware, not for writing your entire code
+in. LS has some restrictions to make it more embedded-friendly:
- Identifiers capped at 6 characters
- Integer arithmetic by default
@@ -112,8 +111,8 @@ The following things use pool entries:
## Positions
-Unlike BASIC which uses line numbers, LittleScript uses a system of named
-labels and numbered small directional jumps. These are inspired by GNU
+Unlike oldschool BASIC which uses line numbers, LittleScript uses a system of
+named labels and numbered small directional jumps. These are inspired by GNU
Assembler jump targets:
```