help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Org to Markdown programmatically


From: Emanuel Berg
Subject: Re: Org to Markdown programmatically
Date: Wed, 05 May 2021 21:47:23 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux)

For example:

(require 'cl)

(cl-loop for (x y) in '((1 2) (3 4) (5 6))
         do (message "%d + %d = %d" x y (+ x y)) )

1 + 2 = 3
3 + 4 = 7
5 + 6 = 11

Note that cl is an Elisp implementation of Lisp that is
associated with CL, but that doesn't make it CL - it is still
Emacs Lisp.

-- 
underground experts united
https://dataswamp.org/~incal




reply via email to

[Prev in Thread] Current Thread [Next in Thread]