Ansible is a Lisp
More specifically, Ansible is homoiconic and has syntactic macros2024-05-01 13:14ansible lisp macros The Lisp family of languages is unique because code and data have the exact same
form, and code is data, and data is code. This property is called
homoiconicity.
Consider the following Racket program (from
The Racket Guide):
(define (extract str)
(substring str 4 7))
(extract "the cat out of the bag")
When evaluated by Racket, it will output “cat”. However, you can also think of
it as a pure piec...
Read more at astrid.tech