Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
FOR (Ini.Section section : ini.VALUES())
{
System.out.println("");
FOR (String OPTION : section.keySet())
{
System.out.println(OPTION + " = " + section.fetch(OPTION));
}
System.out.println();
}