An open API service indexing awesome lists of open source software.

https://github.com/cjl8zf/babel-gap

Adds basic support for running GAP code blocks with babel in org-mode
https://github.com/cjl8zf/babel-gap

elisp emacs gap org-babel org-mode

Last synced: about 1 year ago
JSON representation

Adds basic support for running GAP code blocks with babel in org-mode

Awesome Lists containing this project

README

          

This is a very minimal implementation of an [org babel](https://orgmode.org/worg/org-contrib/babel/languages/index.html) file for the [GAP](https://www.gap-system.org/)
algebra system modified from the template file. This allows the evaluation of GAP code blocks in org:

```
#+begin_src gap
G := DihedralGroup(8);
Print(StructureDescription(Center(G)));
#+end_src

#+RESULTS:
:
: > C2
```

This assumes that the [GAP major mode](https://melpa.org/#/gap-mode)
is installed.