Dato quanto segue è destinato a generare il codice C ++:
#+BEGIN_SRC python :exports both :results output code
print "struct Whatever{};"
#+END_SRC
Il risultato è inserito come segue:
#+RESULTS:
#+BEGIN_SRC python
struct Whatever{};
#+END_SRC
Che chiaramente non è formattato come C ++. Come potrei ottenerlo in modo che org generi quanto segue:
#+RESULTS:
#+BEGIN_SRC c++
struct Whatever{};
#+END_SRC
Grazie