Update BASIC.ipynb

This commit is contained in:
Peter Norvig 2024-04-17 18:07:22 -07:00 committed by GitHub
parent ec29440c14
commit 66e6dd9273
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -84,7 +84,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"The only complicated part is the syntax for numbers: optional digits followed by an optional decimal point, some digits, and optionally a power of 10 marked by `\"E\"` and followed by an (optional) minus sign and some digits. \n",
"In this version of BASIC, variable names must be either a single letter, or a letter followed by a digit. The only complicated part is the syntax for numbers: optional digits followed by an optional decimal point, some digits, and optionally a power of 10 marked by `\"E\"` and followed by an (optional) minus sign and some digits. \n",
"Example usage of `tokenize`:"
]
},