hectometrocuadrado
2021-6-4 16:31:06

bound-identifier=? implies free-identifier=? ?



hectometrocuadrado
2021-6-4 16:33:44

I just read that question xD


hectometrocuadrado
2021-6-4 16:34:27

And I still dont understand the differences :sweat_smile:


soegaard2
2021-6-4 16:35:59

It is a bit tricky. Have you seen the explanation here? https://www.cs.utah.edu/~mflatt/scope-sets-5/general-macros.html


hectometrocuadrado
2021-6-4 16:39:52

Nope, but I will. Thank you


joshibharathiramana
2021-6-5 00:02:32

how can I map a procedure that returns multiple values over a list?


ben.knoble
2021-6-5 00:12:31

Possibly (map (compose values->list your-function) …)?


kellysmith12.21
2021-6-5 00:14:08

What do you want to do with the values that come out of the procedure?


joshibharathiramana
2021-6-5 00:39:18

@kellysmith12.21 return them (it’s in a mutually recursive procedure). To be more specific, here https://github.com/iambrj/imin/blob/master/compiler.rkt#L137

The rco pass transforms it into ANF


joshibharathiramana
2021-6-5 00:39:30

@ben.knoble thanks! I think that should work out.


kellysmith12.21
2021-6-5 00:42:59

You could also group things into a struct, instead of multiple values.


jsx610278856
2021-6-5 00:43:28

my solution