Files
nus/Lab4/Print.java
Yadunand Prem a2fa97383c wip
2022-11-08 18:03:39 +08:00

19 lines
304 B
Java

/**
* A non-generic Action to print the String
* representation of the object.
*
* CS2030S Lab 4
* AY22/23 Semester 1
*
* @author Put Your Name (Lab Group)
*/
class Print<T> implements Action<T> {
@Override
public void call(T item) {
System.out.println(item);
}
}