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

build.gradle

Blame
  • Forked from LABOUREL Arnaud / M1 INFO FSI TP Template
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Loot.java 221 B
    public class Loot {
        int weight, value;
    
        public Loot(int weight, int value) {
            this.weight = weight;
            this.value = value;
        }
    
        public String toString(){
            return weight+" "+value;
        }
    }