[examples/rename] Append newline to messages.

This commit is contained in:
Lorenzo Cogotti 2022-12-15 09:42:52 +01:00
parent 3ea3eeaa67
commit c70b7d8ca2
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ for filename in dir(path) do
end
-- Print a nice message and rename things
write(from, ' -> ', to)
write(from, ' -> ', to, '\n')
assert(osx.rename(from, to))
end
end