public class Node{
public int info;
public Node link;
}
that describes a linked list of integers, write a recursive method for printing all the integers from the given list. For extra credit: write a non-recursive method for performing the same printing task.