1
0
mirror of https://codeberg.org/1414codeforge/lua-osx.git synced 2025-05-14 02:03:13 +02:00

[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

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