表格:
#+tblname: test
| Students | Scores |
|----------+--------|
| Trump1 | 60 |
| Trump2 | 90 |
| Trump3 | 120 |
|----------+--------|
将其转换为csv
#+BEGIN_SRC elisp :var x = test
(orgtbl-to-csv x nil)
#+END_SRC
#+name: test_csv
#+RESULTS:
: Students,Scores
: Trump1,60
: Trump2,90
: Trump3,120
转换为直接输出为result
怎样将转换的结果保存到变量中.