14 Fév
2009
14 Fév
'09
17:08
suppose I have c code of: [1] foo *bar = get_foo(); [2] if (bar != NULL) { ... } in scheme, I have (let ((bar (get-foo))) [1] [2] <-- how do I write this line in scheme? thanks!