View Javadoc
1   /*
2    * License : The MIT License
3    * Copyright(c) 2020 Olyutorskii
4    */
5   
6   package io.github.olyutorskii.ghmvnlibtmpl;
7   
8   public class Entry {
9   
10      public static void main(String[] args) {
11          Resource.getResource();
12          Lib lib = new Lib();
13          System.out.println(lib.func(99));
14          return;
15      }
16  
17  }