Skip to content

Instantly share code, notes, and snippets.

@rssh
Created July 7, 2012 08:22
Show Gist options
  • Save rssh/3065422 to your computer and use it in GitHub Desktop.
Save rssh/3065422 to your computer and use it in GitHub Desktop.
dou - Иллюстрация к колонке от 2012-07-07 №2
try {
in = System.openForRead(“name”);
out = System.openForWriting(“output”);
return copy(in,out);
} finally {
if (in!=null) {
try {
in.close();
} finally {
if (out!=null) {
out.close();
}
}
}
if (out!=null) {
out.close();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment