mirror of
https://github.com/unisonweb/unison.git
synced 2024-11-04 01:03:36 +03:00
456 B
456 B
You can use a keyword or reserved operator as a name segment if you surround it with backticks.
scratch/main> view `match`
scratch/main> view `=`
You can also use backticks to expand the set of valid symbols in a symboly name segment to include these three: .()
This allows you to spell .
or ()
as name segments (which historically have appeared in the namespace).
scratch/main> view `.`
scratch/main> view `()`