Right now I got
- Code: Select all
(defun serialize-hmm-model-to-file (file &rest kwords &key &allow-other-keys)
(let ((s (apply #'open (append (list file :direction :output) kwords))))
(serialize-hmm-model s)
(close s)))
But it feels like to much of a mouthfull really.
-a
