Skip to content
Snippets Groups Projects
Select Git revision
  • 39ce8d8ab334b0159e9bb80a7b6bcc3db36171be
  • master default protected
  • sdas
3 results

misc.xml

Blame
  • Forked from NASR Alexis / Programmation2
    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;
        }
    }