Skip to content
Snippets Groups Projects
Select Git revision
  • 2fbcdcdd2900e7837b3269e69e803e1a03cdaed2
  • main default protected
  • 39-retour-utilisateur-sur-le-compteur
3 results

Input.java

Blame
  • A.java 304 B
    public class A{
        private final String LABEL = "42";
        private String label;
        
        //construtor    
        public A(){
            this.label = this.LABEL;
        }
    
        public A(String label){
            this.label = label;
        }
    
        //methods
        public String toString(){
            return this.label;
        }
    }