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!