How to pass value from Red/System to Red?
问题 I need to pass the value that I generate in Red/System to Red. I discovered docs but did not find an example of how to use it. Here is my code: Red [] #system [ data!: alias struct! [ a [integer!] b [c-string!] ] data: declare data! _foo: func [return: [data!]] [ data/a: 123 data/b: "Hello" return data ] ] sqlite: context [ my-red-block: []; I want to place here: 123 "Hello" foo: routine [ /local x [data!] ] [ x: _foo ; next line do now work ; push my-red-block x/a ] ] view [button "Select"