ansible/dhall/Prelude/XML/attribute.dhall
2024-11-26 00:55:56 -05:00

6 lines
226 B
Text

--| Builds a key-value record with a Text key and value.
let attribute
: Text → Text → { mapKey : Text, mapValue : Text }
= λ(key : Text) → λ(value : Text) → { mapKey = key, mapValue = value }
in attribute