Princeton1/common/src/main/java/com/hithomelabs/princeton1/common/Orange.java
hitanshu310 90f8b14ee5
All checks were successful
sample gradle build and test / build (pull_request) Successful in 55s
sample gradle build and test / build (push) Successful in 49s
Mode commonly used objects to a new module common, added dependencies and test dependencies for other modules on common, added Merge sort, client and tests
2025-02-04 02:15:31 +05:30

15 lines
249 B
Java

package com.hithomelabs.princeton1.common;
public class Orange {
private int size;
public Orange(int size) {
this.size = size;
}
@Override
public String toString() {
return "An orange of size " + size;
}
}