how to implement a class from interface code example
Example: how to implement a interface in java
interface methods{
public static hey();
}
class scratch implements methods{
// Required to implement all methods declared in an interface
// Or else the class becomes abstract
public static hey(){
System.out.println("Hey");
}
}