You need to write a function strjoin(separator, ...strings) that joins strings with a given separator.
The function should take a separator string as the first argument, and the remaining arguments are strings to be joined.
If there are no strings, the function should return an empty string.