Yes --- that's the best part! For instance, the example aif I gave uses a mixed quoted/unquoted lambda list.
For an example of the exact form you gave:
(def f ('a b) (print a) (print b))
(f (list 1 2) (list 3 4))
Outputs:
(list 1 2)
(3 4)
Any combination of quoted and unquoted arguments is valid. Those that are quoted act like macro arguments, and those that are unquoted act like functional arguments.