More Miller 6 doc info (#849)

* Info on operator precedence and the REPL

* Information on indexed emit/emit1 in Miller 6
This commit is contained in:
John Kerl 2022-01-09 19:25:44 -05:00 committed by GitHub
parent b8698f0a9b
commit ebef818a00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 240 additions and 36 deletions

View file

@ -46,6 +46,9 @@ Operators are listed in order of decreasing precedence, highest first.
| `? :` | right to left |
| `=` | N/A for Miller (there is no $a=$b=$c) |
See also the [section on parsing and operator precedence in the REPL](repl.md#parsing-and-operator-precedence)
for information on how to examine operator precedence interactively.
## Operator and function semantics
* Functions are often pass-throughs straight to the system-standard Go libraries.