Examples: **Chunk Tail** ```lua local x = 1 -- comments will never be visited ``` or **Function Tail** ```lua function ok() --print('comments will never be visited') end ``` or **Just Comments** ``` -- comments will never be visited ```