- make-promise objprocedure
The make-promise procedure returns a promise which, when forced, will return obj . It is similar to delay, but does not delay its argument: it is a procedure rather than syntax. If obj is already a promise, it is returned.
This procedure is compatible with the definition from the R7RS (scheme lazy) library.