unison/unison-src/transcripts/boolean-op-pretty-print-2819.output.md
2022-01-24 12:43:11 -05:00

708 B

Regression test for https://github.com/unisonweb/unison/pull/2819

hangExample : Boolean
hangExample =
  ("a long piece of text to hang the line" == "")
    && ("a long piece of text to hang the line" == "")

  I found and typechecked these definitions in scratch.u. If you
  do an `add` or `update`, here's how your codebase would
  change:
  
    ⍟ These new definitions are ok to `add`:
    
      hangExample : Boolean

.> add

  ⍟ I've added these definitions:
  
    hangExample : Boolean

.> view hangExample

  hangExample : Boolean
  hangExample =
    ("a long piece of text to hang the line" == "")
      && ("a long piece of text to hang the line" == "")