yefo.akira
2018-1-22 16:02:30
I have a question regarding slideshow. I have been able to extract some common calls out into functions, as long as there is a single expression in the function ((define (letk) (tt "let ")) as example). But if I have multiple expressions I keep getting errors. Does anyone have any idea?
samth
2018-1-22 16:23:16
@yefo.akira the tt function produces a pict, which gets added to the slide. It doesn’t have a side effect.
yefo.akira
2018-1-22 16:35:16
Oh, of course. Which is why when I am executing multiple (tt) only the last one is being put on the slide. So then I need to group by something like (vc-append)? Or is there a function that groups expressions without modifying the output?
samth
2018-1-22 16:43:43
@yefo.akira yeah, something like vc-append is what you want
yefo.akira
2018-1-22 16:46:07
Works. Cheers :slightly_smiling_face: