I have a function like this:
FUNCTION addUser(name string, surname string) RETURNS text AS
and now, what I need is to take only 3 starting characteters of each argument and make a new string out of them and return it.
Can you point me in the right direction on how to do that?