The answer given by Kevin Wright is entirely correct, but to break it down further:
The first line is declaring a function called foo. foo takes as its argument another function, bar that itself takes in Unit and returns a String. Generally speaking, Unit in scala has the same meaning that void does in many other languages, so you could say for the most part that bar is a function that takes in no arguments and returns a String.
The body of the foo function simply returns the argument it received. Therefore, scala infers that foo returns a function that takes Unit and returns a String.
The second command calls foo with the function a => a.toString as its argument. a is assumed to be of type Unit. If Unit was an exact analogue to void, this wouldn't work. You can't call toString on the absence of something. However, Unit behaves slightly differently, exactly for situations like this, and a will be given an instance of Unit. This instance won't really be able to do much, but it will be able to have toString called on it. So the result of the second command will be a function that returns the result of toString called on the Unit instance, which is:
"()"