unison/unison-src/transcripts/add-run.output.md
Arya Irani 0cd3cd1cff Merge branch 'trunk' into cp/project-root
# Conflicts:
#	unison-cli-integration/integration-tests/IntegrationTests/transcript.output.md
#	unison-src/transcripts-round-trip/main.output.md
#	unison-src/transcripts/add-run.output.md
#	unison-src/transcripts/bug-strange-closure.output.md
#	unison-src/transcripts/cycle-update-5.output.md
#	unison-src/transcripts/delete.output.md
#	unison-src/transcripts/diff-namespace.output.md
#	unison-src/transcripts/move-namespace.output.md
#	unison-src/transcripts/name-selection.output.md
#	unison-src/transcripts/names.output.md
#	unison-src/transcripts/namespace-dependencies.output.md
#	unison-src/transcripts/propagate.output.md
#	unison-src/transcripts/reflog.output.md
#	unison-src/transcripts/reset.output.md
#	unison-src/transcripts/tab-completion.output.md
#	unison-src/transcripts/transcript-parser-commands.output.md
2024-07-10 23:49:04 -04:00

4.9 KiB

add.run

Basic usage

even : Nat -> Boolean
even x = if x == 0 then true else odd (drop x 1)

odd : Nat -> Boolean
odd x = if x == 0 then false else even (drop x 1)

is2even : 'Boolean
is2even = '(even 2)

  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`:
    
      even    : Nat -> Boolean
      is2even : 'Boolean
      odd     : Nat -> Boolean

it errors if there isn't a previous run

scratch/main> add.run foo

  ⚠️
  
  There is no previous evaluation to save. Use `run` to evaluate
  something before attempting to save it.

scratch/main> run is2even

  true

it errors if the desired result name conflicts with a name in the unison file

scratch/main> add.run is2even

  ⚠️
  
  Cannot save the last run result into `is2even` because that
  name conflicts with a name in the scratch file.

otherwise, the result is successfully persisted

scratch/main> add.run foo.bar.baz

  ⍟ I've added these definitions:
  
    foo.bar.baz : Boolean

scratch/main> view foo.bar.baz

  foo.bar.baz : Boolean
  foo.bar.baz = true

It resolves references within the unison file

z b = b Nat.+ 12
y a b = a Nat.+ b Nat.+ z 10




main : '{IO, Exception} (Nat -> Nat -> Nat)
main _ = 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`:
    
      main : '{IO, Exception} (Nat -> Nat -> Nat)
      y    : Nat -> Nat -> Nat
      z    : Nat -> Nat

scratch/main> run main

  a b -> a Nat.+ b Nat.+ z 10

scratch/main> add.run result

  ⍟ I've added these definitions:
  
    result : Nat -> Nat -> Nat
    z      : Nat -> Nat

It resolves references within the codebase

inc : Nat -> Nat
inc x = x + 1

  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`:
    
      inc : Nat -> Nat

scratch/main> add inc

  ⍟ I've added these definitions:
  
    inc : Nat -> Nat

main : '(Nat -> Nat)
main _ x = inc x

  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`:
    
      main : '(Nat -> Nat)

scratch/main> run main

  inc

scratch/main> add.run natfoo

  ⍟ I've added these definitions:
  
    natfoo : Nat -> Nat

scratch/main> view natfoo

  natfoo : Nat -> Nat
  natfoo = inc

It captures scratch file dependencies at run time

x = 1
y = x + x
main = '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`:
    
      main : 'Nat
      x    : Nat
      y    : Nat

scratch/main> run main

  2

x = 50

  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`:
    
      x : Nat

this saves 2 to xres, rather than 100

scratch/main> add.run xres

  ⍟ I've added these definitions:
  
    xres : Nat

scratch/main> view xres

  xres : Nat
  xres = 2

It fails with a message if add cannot complete cleanly

main = '5

  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`:
    
      main : 'Nat

scratch/main> run main

  5

scratch/main> add.run xres

  x These definitions failed:
  
    Reason
    needs update   xres   : Nat
  
    Tip: Use `help filestatus` to learn more.

It works with absolute names

main = '5

  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`:
    
      main : 'Nat

scratch/main> run main

  5

scratch/main> add.run .an.absolute.name

  ⍟ I've added these definitions:
  
    .an.absolute.name : Nat

scratch/main> view .an.absolute.name

  .an.absolute.name : Nat
  .an.absolute.name = 5