Programming

(Common Lisp) multiple-value-bind

steloflute 2015. 6. 15. 23:30

 

* (multiple-value-bind (i f) (floor 3.2) (list i f))

(3 0.20000005)

 

http://clhs.lisp.se/Body/m_multip.htm

 

'Programming' 카테고리의 다른 글

(Racket) editor-canvas font  (0) 2015.06.18
Regex Syntax  (0) 2015.06.17
Excel VBA Speed and Efficiency  (0) 2015.06.04
A re-introduction to JavaScript (JS tutorial)  (0) 2015.05.10
JavaScript HTML DOM Events Examples  (0) 2015.04.20