The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package t ;

import java.util.* ;


public class types {
	public types(){
	}

	public String func(){
		return "study" ;
	}

	public HashMap hm(){
		HashMap hm = new HashMap() ;
		hm.put("key", "value") ;

		return hm ;
	}
}