summaryrefslogtreecommitdiff
path: root/t/types.java
diff options
context:
space:
mode:
Diffstat (limited to 't/types.java')
-rwxr-xr-xt/types.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/t/types.java b/t/types.java
new file mode 100755
index 0000000..b13e0b1
--- /dev/null
+++ b/t/types.java
@@ -0,0 +1,20 @@
+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 ;
+ }
+}