Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
AnsonYeung committed Dec 25, 2024
1 parent e6cd1ec commit 8a6d15c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hkmc2/shared/src/test/mlscript/handlers/RecursiveHandlers.mls
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ let res =
print("B " + "hi" + " " + arg1)
["‹", k1("hi"), arg1, "›"]
g.perform("bye")
g.perform("adios")
g.perform("friend")
print("A " + "hola")
handle g2 = Effect with
fun perform(arg1)(k1) =
Expand All @@ -96,8 +96,8 @@ let res =
in res.toString()
//│ > A hi
//│ > B hi bye
//│ > B hi adios
//│ > B hi friend
//│ > A hola
//│ > B hola adios
//│ > B hola amigos
//│ = '‹,‹,‹,‹,hola,amigos,›,adios,›,adios,›,bye,›'
//│ = '‹,‹,‹,‹,hola,amigos,›,adios,›,friend,›,bye,›'

0 comments on commit 8a6d15c

Please sign in to comment.