| Field | Value | 
|---|---|
| Source folder | HelloJVMworld/src | 
| Package* | com.microfocus.example | 
| Name | JVMWorldClass | 
This creates a new COBOL program from the supplied templates to hold the code for the class in the src > com > microfocus > example folder in your project. The program also opens in the editor.
      $set ilusing(com.microfocus.example)
       class-id com.microfocus.example.JVMWorldClass public.
       working-storage section.
       method-id main static.
       01 class1 type JVMWorldClass.
      
       procedure division using by value args as String occurs any.
           set class1 to new JVMWorldClass
           invoke class1::instanceMethod
           stop run.
       end method.
       method-id instanceMethod.
       
       procedure division.
           display "Hello world".
           goback.
       end method.
       
       end class.