Remove duplicate docs

This commit is contained in:
2025-10-15 16:44:29 +02:00
parent ffe6010ef4
commit 4554ea3ab0
2 changed files with 22 additions and 253 deletions
+8
View File
@@ -557,4 +557,12 @@ import "other.wl"
"The A variable is accessible here: "
A
```
## External Symbols
WL programs may reference external symbols (variables or functions) defined by the host program. These symbols behave like variables and procedures, except they don't need to be declared and their names start with `$`. For instance, you could have a `$platform` symbol return the name of the current platform (as in "Linux" or "Windows")
```
<p>The process is running on a \$platform machine</p>
```