changed tabs to spaces

This commit is contained in:
welkam 2020-05-29 17:15:40 +03:00
parent 9fa355c26a
commit 05f46a852d

View file

@ -3333,11 +3333,11 @@ import std.stdio, std.file;
void main()
{
auto file_handle = File(deleteme, "w");
file_handle.write("abc"); //create temporary file
scope(exit) deleteme.remove; //remove temporary file at scope exit
auto file_handle = File(deleteme, "w");
file_handle.write("abc"); //create temporary file
scope(exit) deleteme.remove; //remove temporary file at scope exit
assert(file_handle.size() == 3); //check if file size is 3 bytes
assert(file_handle.size() == 3); //check if file size is 3 bytes
} //temporary file gets deleted here
---
*/