Skip to content

Commit

Permalink
Update tutorial.md
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmuth authored Jun 28, 2024
1 parent 3f99089 commit 2af01da
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions FrontEndDocs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ module(
type Visitor = funtype(node ^$type) void
@pub fun InorderTraversal(root MaybeNode, visitor Visitor) void:
-- return if the union root is a Leaf
trylet node ^!Node = root, _:
return
do InorderTraversal(node^.left, visitor)
Expand Down

0 comments on commit 2af01da

Please sign in to comment.