9 lines
194 B
Scheme
9 lines
194 B
Scheme
|
(use-modules (ordo playbook))
|
||
|
|
||
|
(playbook
|
||
|
#:name "Example playbook"
|
||
|
#:vars '((foo . 1) (bar . "baz"))
|
||
|
#:plays (list
|
||
|
(play #:name "Example play"
|
||
|
#:host "localhost")))
|