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
- Host: GitHub
- URL: https://github.com/cjl8zf/babel-gap
- Owner: cjl8zf
- Created: 2020-12-23T01:02:03.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-23T02:19:25.000Z (over 5 years ago)
- Last Synced: 2025-02-02T18:15:41.172Z (over 1 year ago)
- Topics: elisp, emacs, gap, org-babel, org-mode
- Language: Emacs Lisp
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.