Folks,


I ask for help with a Guile question.

Naively, I tried

```
SCM proc = scm_boolean_p;
```

However, this bombs out with

```
error: cannot convert 'scm_unused_struct* (*)(SCM)'
       {aka 'scm_unused_struct* (*)(scm_unused_struct*)'}
       to 'SCM' {aka 'scm_unused_struct*'}
```

What is the correct way to assign a built-in procedure like `boolean?`
(i.e., `scm_boolean_p`) to a variable of type `SCM`?


    Werner

Reply via email to