You have forgotten to put parenthesis around your list pattern x::xs, like this:
fun get_first [] = []
| get_first (x::xs) = (hd x)::get_first xs
The reason why it isn't working is a bit "complicated". In SML, lists are just defined as a datatype and some syntactic sugar. It basically looks something like this
datatype 'a list = nil | :: of ('a * 'a list)
As it is possible to pattern match upon datatype constructors, it is possible to pattern match against both nil (what you normally write as []) and ::.
However, if you don't place parenthesis around it, then it will be interpreted as if the function was pattern matching 3 curried arguments. This is perhaps better visualised like this
| get_first (x) (::) (xs) = ....
Also do note that you could easily implement this, using the map function
fun get_first xs = map hd xs