Rename a file: Difference between revisions

Content added Content deleted
(Added Arturo implementation)
No edit summary
Line 1,032: Line 1,032:
shutil.move("/input.txt", "/output.txt")
shutil.move("/input.txt", "/output.txt")
shutil.move("/docs", "/mydocs")</lang>
shutil.move("/docs", "/mydocs")</lang>

=={{header|QB64}}==
<lang qbasic>NAME "input.txt" AS "output.txt"
NAME "\input.txt" AS "\output.txt"
NAME "docs" AS "mydocs"
NAME "\docs" AS "\mydocs"</lang>


=={{header|R}}==
=={{header|R}}==