unison/unison-src/transcripts/fix5055.output.md
Greg Pfeil 0031542faf
Add a space before code block info strings
This is for consistency with the `cmark` style. Now the blocks we still
pretty-print ourselves will match the bulk of them that `cmark`
produces.
2024-07-10 13:56:07 -06:00

780 B

test-5055/main> builtins.merge

  Done.

foo.add x y = x Int.+ y

foo.subtract x y = x Int.- y

  Loading changes detected in scratch.u.

  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`:
    
      foo.add      : Int -> Int -> Int
      foo.subtract : Int -> Int -> Int

test-5055/main> add

  ⍟ I've added these definitions:
  
    foo.add      : Int -> Int -> Int
    foo.subtract : Int -> Int -> Int

test-5055/main> ls foo

  1. add      (Int -> Int -> Int)
  2. subtract (Int -> Int -> Int)

test-5055/main> view 1

  foo.add : Int -> Int -> Int
  foo.add x y =
    use Int +
    x + y