mirror of
https://github.com/unisonweb/unison.git
synced 2024-11-04 01:03:36 +03:00
20 lines
629 B
Plaintext
20 lines
629 B
Plaintext
|
|
explanationOfThisFile = """
|
|
Put definitions in here that are expected to
|
|
parse with a different hash after pretty-printing.
|
|
"""
|
|
|
|
-- This is expected to round trip with the ``` syntax,
|
|
-- even though the original didn't use that syntax and
|
|
-- defined the eval block with a lambda rather than a delay.
|
|
sloppyDocEval =
|
|
docUntitledSection [
|
|
docParagraph [
|
|
docWord "Here's an example of an eval block that's",
|
|
docWord "technically a lambda but should print as a",
|
|
docWord "backticked block (since old docs in the wild",
|
|
docWord "still use this format)."
|
|
],
|
|
docEval (_ -> 1 Nat.+ 1)
|
|
]
|