soegaard2
2020-7-12 16:28:54

@sorawee Possible yes - but you need to make it yourself. It would be great to have a more “functional” way of using a GUI.

FWIW - check: https://docs.racket-lang.org/teachpack/gui.html and of course FrTime as A MauerOats mentions.


soegaard2
2020-7-12 17:14:23

https://github.com/rmculpepper/scribble-pict

Alternative path from Scribble to pdf?


maueroats
2020-7-12 23:31:14

Looks like you might use “kinda-ferpy” to make a lighter weight gui than frtime would give. Just posted for thought.


shaffan1996
2020-7-12 23:43:12

@shaffan1996 has joined the channel


gfb
2020-7-13 00:29:22

What does syntax-parse use to create syntax from a list, preserving the contexts of elements but not giving context to the resulting syntax, e.g. in (define/syntax-parse sl (list #'car)) .


maueroats
2020-7-13 01:24:57

I think datum->syntax with the first argument #f.


william.macready
2020-7-13 03:18:38

@william.macready has joined the channel


gfb
2020-7-13 04:16:19

@maueroats thanks, I was doing that for a while and somehow convinced myself it was affecting the inner contexts today, but you made me re-check my tests and it was another issue