Skip to content

Instantly share code, notes, and snippets.

@rssh
Created July 7, 2012 08:23
Show Gist options
  • Save rssh/3065424 to your computer and use it in GitHub Desktop.
Save rssh/3065424 to your computer and use it in GitHub Desktop.
dou - Иллюстрация к колонке от 2012-07-07 №3
{
auto in = File(“input”,"r");
scope(exit){ in.close(); }
auto out = File(“output”,"w");
scope(exit){ out.close(); }
out.copyFrom(in);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment