Learner.java 106B

1234567
  1. package com.example.demo.LearnerLab;
  2. public interface Learner {
  3. void learn(double numberOfHours);
  4. }