Created
September 14, 2015 14:08
-
-
Save snowleung/36dafd7acc6f981d2b33 to your computer and use it in GitHub Desktop.
try to make skeleton
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 gg-input (li) | |
;;(setq v2 '()) | |
(setq li (split-string li ",")) | |
(setq format-str | |
(mapcar | |
(lambda (f) (format "\n:param %s: %s" f f)) | |
li)) | |
(require 'cl-lib) | |
(prin1-to-string format-str) | |
(cl-reduce '(lambda (v) v) format-str)) | |
(gg-input '(1 2 3)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment