<div dir="ltr">I'm hoping to implement the following function to access arbitrary struct fields.<div><br></div><div><font face="monospace">;; Compute `[st]-field-name st`, where </font></div><div><font face="monospace">;; [st] is the name of the struct type of `st`</font></div><div><font face="monospace">(define (runtime-get st field-name)</font></div><div><font face="monospace">  (-> struct? string? any/c)</font></div><div><font face="monospace">  (error "not implemented"))</font></div><div><br></div><div>Is this possible? I fear I can't use a macro because I don't know exactly which struct I'll get at runtime.</div></div>