Skip to content
Snippets Groups Projects
Select Git revision
  • d5036747ecb3526f4fa0e3909c801c104fc94541
  • main default protected
2 results

App.java

Blame
  • Forked from COUETOUX Basile / aroTP1
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    App.java 214 B
    import java.util.List;
    
    public class App {
        public static void main(String[] args) throws Exception {
            List<Loot> loots = new InstanceReader().read("src/sac0");
            System.out.println(loots);
        }
    }