Hello, Python have a nice concept called "context manager" (see "with" statement) http://book.pythontips.com/en/latest/context_managers.html With this concept it's quite easy to open a file without having to close it. Yattag, for example, use this concept to create XML files. You just need to use context managers to create opening tags... closing tags are automatically created. So is there a similar concept in Julia. If yes, where can I find some doc about it ? If not, is there any plan to provide such feature ?
Kind regards
