Reading and writing Windows-style INI files from Julia
Pkg.add("IniFile") # first-time only
using IniFile # load code into current session
ini = Inifile()
sections(ini)
defaults(ini)
get(ini, "section", "key", default)
set(ini, "section", "key", value)
ini = read(Inifile(), "file.ini")
open("file.ini", "w+") do io
write(io, ini)
end