Adds the value to the start of the list
val
LinkedList<int> l = {3, 4, 5}; l.pushBase(6); //l now contains {6, 3, 4, 5}