elisp-koans
elisp-koans copied to clipboard
Emacs Lisp Koans -- learn elisp through test-driven development.
Apparently on emacs 27 there is no `case` function, but find that `cl-case` seems to do the trick fixing the error which I get of: ``` setq: Symbol’s function definition...
## Problem The actual koans in lisp-koans got a big update with the 2.0 release. However, since this implementation forked awhile back we can't simply cherry pick over the updates....
And looking through the sourse code of the project, I don't see that symbol anywhere else. `C-h f` doesn't think it exists either. Where is that symbol supposed to come...
I assume this is user error, but I'm still stuck. Cheat sheet branch is same as main branch for this file. I've gone through about half of the koans, in...
## Problem Currently the cheatsheet is a separate branch in this repo. This means that commits to the master branch which change tests require similar changes to the `cheatsheet` branch....
thanks for these koans, they're really helpful to get started, makes emacs lisp a lot less intimidating and I feel confident to try debugging and editing plugins now :smiley: At...
Perhaps rather explain difference between `eq` and `equal`. See `evaluation.el`, `test-quoting-behavior`.