Created
June 19, 2016 09:30
-
-
Save furushchev/9454b6982021d7ff1fc862dff9eda04c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun ros::time->string (tm) | |
(format nil "~A~A" (send tm :sec) (send tm :nsec))) | |
(defun save-csv (destination) | |
(with-open-file (f destination :direction :output :if-exists :append) | |
(format f "hoge~%"))) | |
(save-csv #p"./hoge.csv") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment