Input: ```lua if foo then -- Run bar bar() else -- Run baz baz() end ``` Output: ```lua if foo then -- Run bar bar() -- Run baz else baz() end ```