package JI9061373;

import java.util.HashMap; 
import java.util.Map; 

public class CallGGNSGM { 
    public static void main(String[] args) { 
        Map<String, String> map = new HashMap(); 
        map.put("k", "v"); 
        System.out.println("CallGGSGM try gg_instantiated_gm"); 
        (new GGNSGM()).call(map); //Compiler error(as lines 14-16) expected here 
        System.out.println(map); 
        for (Map.Entry<String, String> entry : map.entrySet()) { 
            System.out.println(entry.getKey() + " : " + entry.getValue()); 
        } 
// GGSGM.call(map); 
// (new NSGM()).call(map); 
// SGM.call(map); 
    } 
} 
