-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ob-idris support? #470
Comments
We'd almost certainly accept a pull request that made it work! I tried a few years ago but it was taking too long and I gave up.
|
I've been playing with this a bit, and have gotten somewhere but not far enough. My first attempt was to use My second attempt got single line execution going using
My current attempt is to try to get sessions and blocks going. I am trying to use something like (idris-eval '(:load-file (expand-file-name "~/junk/test.idr")) nil) where we'd save the contents of the org-babel block to a temp file and then run import Data.Vect
mymap : (a -> b) -> Vect n a -> Vect n b
mymap f [] = []
mymap f (x :: xs) = f x :: mymap f xs but if I try to evaluate the elisp directly I get errors:
I'm not sure what that's about or how to diagnose it. If you have any pointers, I'd be happy to keep this moving forward... |
Hi, thanks for the great work.
I want to literate programming with idris. Will
idris-mode
addob-idris
?Thanks a lot.
The text was updated successfully, but these errors were encountered: