Skip to content

Commit

Permalink
Update >>> to >-> in test
Browse files Browse the repository at this point in the history
  • Loading branch information
paulcadman committed Jun 26, 2024
1 parent e9d5802 commit 4074040
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Anoma/Compilation/positive/test080.juvix
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ import Stdlib.Debug.Trace open;

main : Maybe Nat :=
trace (just 1)
>>> trace
>-> trace
{Nat}
case just 2 of {
| just x := x
| nothing := 0
}
>>> trace
>-> trace
{Nat}
case nothing {Nat} of {
| just x := 0
| nothing := 3
}
>>> nothing;
>-> nothing;

0 comments on commit 4074040

Please sign in to comment.