I was bored

This commit is contained in:
IgorCielniak
2026-03-25 13:28:26 +01:00
parent a74c4b8c41
commit 052f9191c3

View File

@@ -11542,7 +11542,7 @@ def _run_docs_tui(
"\n"
" 5. NASM + LINKER\n"
" The assembly is assembled by NASM into an object\n"
" file, then linked (via ld or gcc) into the final\n"
" file, then linked (via ld or ld.ldd) into the final\n"
" binary.\n"
"\n"
"───────────────────────────────────────────────────────────────\n"
@@ -11567,7 +11567,7 @@ def _run_docs_tui(
" The CT VM is a stack-based interpreter that runs during\n"
" parsing. It maintains:\n"
"\n"
" - A value stack (Python list of ints/strings/lists)\n"
" - A value stack\n"
" - A dictionary of CT-callable words\n"
" - A return stack for nested calls\n"
"\n"
@@ -11579,7 +11579,7 @@ def _run_docs_tui(
"\n"
" When --ct-run-main is used, the CT VM can also JIT-compile\n"
" and execute native x86-64 code via the Keystone assembler\n"
" engine (for words that need native performance).\n"
" engine (for words that need near native performance).\n"
"\n"
"───────────────────────────────────────────────────────────────\n"
"\n"
@@ -11641,7 +11641,7 @@ def _run_docs_tui(
" just numbers. Type safety is your responsibility.\n"
"\n"
" - Macro expansion depth: macros can expand macros,\n"
" but there's a limit (default 64, configurable via\n"
" but there's a limit (default 256, configurable via\n"
" --macro-expansion-limit).\n"
"\n"
" - :py blocks: Python code embedded in :py { ... }\n"