playground/jaml.clj
Rune Juhl (Atea) 31dd36c804 Fix ns in jaml
2024-02-23 11:32:21 +01:00

10 lines
325 B
Clojure
Executable file

#!/usr/bin/env bb
(ns jaml
(:require [cheshire.core :as json]
[clj-yaml.core :as yaml]
[clojure.java.io]))
(print (yaml/generate-string
(json/parse-stream (clojure.java.io/reader
(first *command-line-args*)))
:dumper-options {:flow-style :block}))